diff --git a/.dependency-cruiser.cjs b/.dependency-cruiser.cjs index 08daf98fca4..8b956a11a11 100644 --- a/.dependency-cruiser.cjs +++ b/.dependency-cruiser.cjs @@ -5,9 +5,7 @@ module.exports = { name: "no-non-type-@type-exports", severity: "error", comment: - "Files in @types should not export anything but types and interfaces. " + - "The folder is intended to house imports that are removed at runtime, " + - "and thus should not contain anything with a bearing on runtime code.", + "Files in @types should not export anything but types and interfaces. The folder is intended to house imports that are removed at runtime, and thus should not contain anything with a bearing on runtime code.", from: {}, to: { path: "(^|/)src/@types", @@ -29,8 +27,7 @@ module.exports = { name: "no-circular-at-runtime", severity: "error", comment: - "This dependency is part of a circular relationship. You might want to revise " + - "your solution (i.e. use dependency inversion, make sure the modules have a single responsibility) ", + "This dependency is part of a circular relationship. You might want to revise your solution (i.e. use dependency inversion, make sure the modules have a single responsibility) ", from: {}, to: { circular: true, @@ -42,11 +39,7 @@ module.exports = { { name: "no-orphans", comment: - "This is an orphan module - it's likely not used (anymore?). Either use it or " + - "remove it. If it's logical this module is an orphan (i.e. it's a config file), " + - "add an exception for it in your dependency-cruiser configuration. By default " + - "this rule does not scrutinize dot-files (e.g. .eslintrc.js), TypeScript declaration " + - "files (.d.ts), tsconfig.json and some of the babel and webpack configs.", + "This is an orphan module - it's likely not used (anymore?). Either use it or remove it. If it's logical this module is an orphan (i.e. it's a config file), add an exception for it in your dependency-cruiser configuration. By default this rule does not scrutinize dot-files (e.g. .eslintrc.js), TypeScript declaration files (.d.ts), tsconfig.json and some of the babel and webpack configs.", severity: "error", from: { orphan: true, @@ -63,8 +56,7 @@ module.exports = { { name: "no-deprecated-core", comment: - "A module depends on a node core module that has been deprecated. Find an alternative - these are " + - "bound to exist - node doesn't deprecate lightly.", + "A module depends on a node core module that has been deprecated. Find an alternative - these are bound to exist - node doesn't deprecate lightly.", severity: "error", from: {}, to: { @@ -96,8 +88,7 @@ module.exports = { { name: "not-to-deprecated", comment: - "This module uses a (version of an) npm module that has been deprecated. Either upgrade to a later " + - "version of that module, or find an alternative. Deprecated modules are a security risk.", + "This module uses a (version of an) npm module that has been deprecated. Either upgrade to a later version of that module, or find an alternative. Deprecated modules are a security risk.", severity: "error", from: {}, to: { @@ -108,10 +99,7 @@ module.exports = { name: "no-non-package-json", severity: "error", comment: - "This module depends on an npm package that isn't in the 'dependencies' section of your package.json. " + - "That's problematic as the package either (1) won't be available on live (2 - worse) will be " + - "available on live with an non-guaranteed version. Fix it by adding the package to the dependencies " + - "in your package.json.", + "This module depends on an npm package that isn't in the 'dependencies' section of your package.json. That's problematic as the package either (1) won't be available on live (2 - worse) will be available on live with an non-guaranteed version. Fix it by adding the package to the dependencies in your package.json.", from: {}, to: { dependencyTypes: ["npm-no-pkg", "npm-unknown"], @@ -120,8 +108,7 @@ module.exports = { { name: "not-to-unresolvable", comment: - "This module depends on a module that cannot be found ('resolved to disk'). If it's an npm " + - "module: add it to your package.json. In all other cases you likely already know what to do.", + "This module depends on a module that cannot be found ('resolved to disk'). If it's an npm module: add it to your package.json. In all other cases you likely already know what to do.", severity: "error", from: {}, to: { @@ -131,9 +118,7 @@ module.exports = { { name: "no-duplicate-dep-types", comment: - "Likely this module depends on an external ('npm') package that occurs more than once " + - "in your package.json i.e. bot as a devDependencies and in dependencies. This will cause " + - "maintenance problems later on.", + "Likely this module depends on an external ('npm') package that occurs more than once in your package.json i.e. bot as a devDependencies and in dependencies. This will cause maintenance problems later on.", severity: "error", from: {}, to: { @@ -150,9 +135,7 @@ module.exports = { { name: "not-to-spec", comment: - "This module depends on a spec (test) file. The sole responsibility of a spec file is to test code. " + - "If there's something in a spec that's of use to other modules, it doesn't have that single " + - "responsibility anymore. Factor it out into (e.g.) a separate utility/ helper or a mock.", + "This module depends on a spec (test) file. The sole responsibility of a spec file is to test code. If there's something in a spec that's of use to other modules, it doesn't have that single responsibility anymore. Factor it out into (e.g.) a separate utility/ helper or a mock.", severity: "error", from: {}, to: { @@ -163,11 +146,7 @@ module.exports = { name: "not-to-dev-dep", severity: "error", comment: - "This module depends on an npm package from the 'devDependencies' section of your " + - "package.json. It looks like something that ships to production, though. To prevent problems " + - "with npm packages that aren't there on production declare it (only!) in the 'dependencies'" + - "section of your package.json. If this module is development only - add it to the " + - "from.pathNot re of the not-to-dev-dep rule in the dependency-cruiser configuration", + "This module depends on an npm package from the 'devDependencies' section of your package.json. It looks like something that ships to production, though. To prevent problems with npm packages that aren't there on production declare it (only!) in the 'dependencies'section of your package.json. If this module is development only - add it to the from.pathNot re of the not-to-dev-dep rule in the dependency-cruiser configuration", from: { path: "^(src)", pathNot: ["[.](?:spec|test|setup|script)[.](?:js|mjs|cjs|jsx|ts|mts|cts|tsx)$", "./test"], @@ -184,10 +163,7 @@ module.exports = { name: "optional-deps-used", severity: "info", comment: - "This module depends on an npm package that is declared as an optional dependency " + - "in your package.json. As this makes sense in limited situations only, it's flagged here. " + - "If you're using an optional dependency here by design - add an exception to your" + - "dependency-cruiser configuration.", + "This module depends on an npm package that is declared as an optional dependency in your package.json. As this makes sense in limited situations only, it's flagged here. If you're using an optional dependency here by design - add an exception to yourdependency-cruiser configuration.", from: {}, to: { dependencyTypes: ["npm-optional"], @@ -196,10 +172,7 @@ module.exports = { { name: "peer-deps-used", comment: - "This module depends on an npm package that is declared as a peer dependency " + - "in your package.json. This makes sense if your package is e.g. a plugin, but in " + - "other cases - maybe not so much. If the use of a peer dependency is intentional " + - "add an exception to your dependency-cruiser configuration.", + "This module depends on an npm package that is declared as a peer dependency in your package.json. This makes sense if your package is e.g. a plugin, but in other cases - maybe not so much. If the use of a peer dependency is intentional add an exception to your dependency-cruiser configuration.", severity: "error", from: {}, to: { diff --git a/.editorconfig b/.editorconfig index be478a2b5fa..fc5cfbe61e3 100644 --- a/.editorconfig +++ b/.editorconfig @@ -3,7 +3,7 @@ # top-most EditorConfig file root = true -[src/*.{js,ts}] +[**/*.{js,ts,json,jsonc}] indent_style = space indent_size = 2 end_of_line = lf diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 35a31f6b4d1..f2e17898334 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -20,6 +20,7 @@ permissions: jobs: create-release: if: github.repository == 'pagefaultgames/pokerogue' && (vars.BETA_DEPLOY_BRANCH == '' || ! startsWith(vars.BETA_DEPLOY_BRANCH, 'release')) + timeout-minutes: 10 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed for github cli commands runs-on: ubuntu-latest @@ -36,14 +37,24 @@ jobs: exit 1 fi shell: bash + + - uses: actions/create-github-app-token@v2 + id: app-token + with: + app-id: ${{ secrets.PAGEFAULT_APP_ID }} + private-key: ${{ secrets.PAGEFAULT_APP_PRIVATE_KEY }} + - name: Check out code uses: actions/checkout@v4 with: submodules: "recursive" # Always base off of beta branch, regardless of the branch the workflow was triggered from. ref: beta + token: ${{ steps.app-token.outputs.token }} + - name: Create release branch run: git checkout -b release + # In order to be able to open a PR into beta, we need the branch to have at least one change. - name: Overwrite RELEASE file run: | @@ -52,11 +63,14 @@ jobs: echo "Release v${{ github.event.inputs.versionName }}" > RELEASE git add RELEASE git commit -m "Stage release v${{ github.event.inputs.versionName }}" + - name: Push new branch run: git push origin release + # The repository variable is used by the deploy-beta workflow to determine whether to deploy from beta or release. - name: Set repository variable - run: GITHUB_TOKEN="${{ secrets.RW_VARS_PAT }}" gh variable set BETA_DEPLOY_BRANCH --body "release" + run: GITHUB_TOKEN="${{ steps.app-token.outputs.token }}" gh variable set BETA_DEPLOY_BRANCH --body "release" + - name: Create pull request to main run: | gh pr create --base main \ @@ -64,6 +78,7 @@ jobs: --title "Release v${{ github.event.inputs.versionName }} to main" \ --body "This PR is for the release of v${{ github.event.inputs.versionName }}, and was created automatically by the GitHub Actions workflow invoked by ${{ github.actor }}" \ --draft + - name: Create pull request to beta run: | gh pr create --base beta \ diff --git a/.github/workflows/deploy-beta.yml b/.github/workflows/deploy-beta.yml index 0894032c8ad..341999dcd45 100644 --- a/.github/workflows/deploy-beta.yml +++ b/.github/workflows/deploy-beta.yml @@ -12,6 +12,7 @@ on: jobs: deploy: if: github.repository == 'pagefaultgames/pokerogue' && github.ref_name == (vars.BETA_DEPLOY_BRANCH || 'beta') + timeout-minutes: 10 runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 0e7102a41dd..528906196e5 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -11,6 +11,7 @@ on: jobs: deploy: if: github.repository == 'pagefaultgames/pokerogue' + timeout-minutes: 10 runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index 1588a15afeb..6e056bc4032 100644 --- a/.github/workflows/github-pages.yml +++ b/.github/workflows/github-pages.yml @@ -5,10 +5,14 @@ on: branches: - main - beta + - release + - 'hotfix*' pull_request: branches: - main - beta + - release + - 'hotfix*' merge_group: types: [checks_requested] @@ -16,9 +20,12 @@ jobs: pages: name: Github Pages if: github.repository == 'pagefaultgames/pokerogue' + timeout-minutes: 10 runs-on: ubuntu-latest env: - api-dir: ./ + docs-dir: ./pokerogue_docs + # Only push docs when running on pushes to main/beta + DRY_RUN: ${{github.event_name != 'push' || (github.ref_name != 'beta' && github.ref_name != 'main')}} strategy: fail-fast: false @@ -40,7 +47,7 @@ jobs: with: version: 10 - - name: Setup Node 22.14.1 + - name: Setup Node uses: actions/setup-node@v4 with: node-version-file: "pokerogue_docs/.nvmrc" @@ -53,26 +60,24 @@ jobs: ref: gh-pages - name: Install Node.js dependencies - working-directory: ${{env.api-dir}} - run: | - cd pokerogue_docs - pnpm i + working-directory: ${{env.docs-dir}} + run: pnpm i - name: Generate Typedoc docs - working-directory: ${{env.api-dir}} - run: | - cd pokerogue_docs - pnpm exec typedoc --out /tmp/docs --githubPages false --entryPoints ./src/ + working-directory: ${{env.docs-dir}} + env: + REF_NAME: ${{github.ref_name}} + DRY_RUN: ${{env.DRY_RUN}} + run: pnpm typedoc - name: Commit & Push docs - if: github.event_name == 'push' + # env vars are stored as strings instead of booleans (hence why an explicit check is required) + if: ${{ env.DRY_RUN == 'false'}} run: | cd pokerogue_gh git config user.email "github-actions[bot]@users.noreply.github.com" git config user.name "github-actions[bot]" - mkdir -p $GITHUB_REF_NAME - rm -rf $GITHUB_REF_NAME/* - cp -r /tmp/docs/. $GITHUB_REF_NAME + rsync -rd --delete /tmp/docs/ $GITHUB_REF_NAME git add $GITHUB_REF_NAME - git commit --allow-empty -m "[skip ci] Deploy docs" - git push \ No newline at end of file + git commit -m "[skip ci] Deploy docs" + git push diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 82f5abd23a1..edecae64f95 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -5,43 +5,107 @@ on: branches: - main - beta + - release + - 'hotfix*' pull_request: branches: - main - beta + - release + - 'hotfix*' merge_group: types: [checks_requested] jobs: run-linters: - name: Run linters + name: Run all linters + timeout-minutes: 10 runs-on: ubuntu-latest steps: - name: Check out Git repository uses: actions/checkout@v4 with: - submodules: 'recursive' + submodules: "recursive" - name: Install pnpm uses: pnpm/action-setup@v4 with: version: 10 - - name: Set up Node.js + - name: Set up Node uses: actions/setup-node@v4 with: - node-version-file: '.nvmrc' - cache: 'pnpm' + node-version-file: ".nvmrc" + cache: "pnpm" - - name: Install Node.js dependencies + - name: Install Node modules run: pnpm i - - name: Lint with Biome + # Lint files with Biome-Lint - https://biomejs.dev/linter/ + - name: Run Biome-Lint run: pnpm biome-ci + id: biome_lint + continue-on-error: true - - name: Check dependencies with depcruise + # Validate dependencies with dependency-cruiser - https://github.com/sverweij/dependency-cruiser + - name: Run Dependency-Cruise run: pnpm depcruise - - - name: Lint with ls-lint - run: pnpm ls-lint \ No newline at end of file + id: depcruise + continue-on-error: true + + # Validate types with tsc - https://www.typescriptlang.org/docs/handbook/compiler-options.html#using-the-cli + - name: Run Typecheck + run: pnpm typecheck + id: typecheck + continue-on-error: true + + # The exact same thing + - name: Run Typecheck (scripts) + run: pnpm typecheck:scripts + id: typecheck-scripts + continue-on-error: true + + - name: Evaluate for Errors + env: + BIOME_LINT_OUTCOME: ${{ steps.biome_lint.outcome }} + DEPCRUISE_OUTCOME: ${{ steps.depcruise.outcome }} + TYPECHECK_OUTCOME: ${{ steps.typecheck.outcome }} + TYPECHECK_SCRIPTS_OUTCOME: ${{ steps.typecheck-scripts.outcome }} + run: | + # Check for Errors + + # Make text red. + red () { + printf "\e[31m%s\e[0m" "$1" + } + + # Make text green. + green () { + printf "\e[32m%s\e[0m" "$1" + } + + print_result() { + local name=$1 + local outcome=$2 + if [ "$outcome" == "success" ]; then + printf "$(green "✅ $name: $outcome")\n" + else + printf "$(red "❌ $name: $outcome")\n" + fi + } + + print_result "Biome" "$BIOME_LINT_OUTCOME" + print_result "Depcruise" "$DEPCRUISE_OUTCOME" + print_result "Typecheck" "$TYPECHECK_OUTCOME" + print_result "Typecheck scripts" "$TYPECHECK_SCRIPTS_OUTCOME" + + if [[ "$BIOME_LINT_OUTCOME" != "success" || \ + "$DEPCRUISE_OUTCOME" != "success" || \ + "$TYPECHECK_OUTCOME" != "success" || \ + "$TYPECHECK_SCRIPTS_OUTCOME" != "success" ]]; then + printf "$(red "❌ One or more checks failed!")\n" >&2 + exit 1 + fi + + printf "$(green "✅ All checks passed!")\n" diff --git a/.github/workflows/post-release-deleted.yml b/.github/workflows/post-release-deleted.yml index 65447e7826b..fe542365da4 100644 --- a/.github/workflows/post-release-deleted.yml +++ b/.github/workflows/post-release-deleted.yml @@ -6,6 +6,7 @@ jobs: # Set the BETA_DEPLOY_BRANCH variable to beta when a release branch is deleted update-release-var: if: github.repository == 'pagefaultgames/pokerogue' && github.event.ref_type == 'branch' && github.event.ref == 'release' + timeout-minutes: 5 runs-on: ubuntu-latest steps: - name: Set BETA_DEPLOY_BRANCH to beta diff --git a/.github/workflows/test-shard-template.yml b/.github/workflows/test-shard-template.yml index 124004f380f..79aea56bbd0 100644 --- a/.github/workflows/test-shard-template.yml +++ b/.github/workflows/test-shard-template.yml @@ -21,6 +21,7 @@ jobs: test: # We can't use dynmically named jobs until https://github.com/orgs/community/discussions/13261 is implemented name: Shard + timeout-minutes: 10 runs-on: ubuntu-latest if: ${{ !inputs.skip }} steps: diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 764a35ace60..39506096298 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -5,16 +5,21 @@ on: branches: - main - beta + - release + - 'hotfix*' pull_request: branches: - main - beta + - release + - 'hotfix*' merge_group: types: [checks_requested] workflow_dispatch: jobs: check-path-change-filter: + timeout-minutes: 5 runs-on: ubuntu-latest permissions: pull-requests: read @@ -33,6 +38,8 @@ jobs: name: Run Tests needs: check-path-change-filter strategy: + # don't stop upon 1 shard failing + fail-fast: false matrix: shard: [1, 2, 3, 4, 5] uses: ./.github/workflows/test-shard-template.yml diff --git a/.gitignore b/.gitignore index 299767e742a..cdc0660d68c 100644 --- a/.gitignore +++ b/.gitignore @@ -11,6 +11,7 @@ node_modules dist dist-ssr *.local +build # Editor directories and files (excluding `extensions.json` for devcontainer) *.code-workspace diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 81abc8df2c0..2197ad03ef2 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -10,4 +10,4 @@ "aaron-bond.better-comments", "MuTsunTsai.jsdoc-link" ] -} \ No newline at end of file +} diff --git a/README.md b/README.md index 1bb8c7772f3..73477968bc0 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,9 @@ -PokéRogue +
PokéRogue + +[![Discord Static Badge](https://img.shields.io/badge/Community_Discord-blurple?style=flat&logo=discord&logoSize=auto&labelColor=white&color=5865F2)](https://discord.gg/pokerogue) +[![Docs Coverage Static Badge](https://pagefaultgames.github.io/pokerogue/beta/coverage.svg)](https://pagefaultgames.github.io/pokerogue/beta) +[![Testing Badge](https://github.com/pagefaultgames/pokerogue/actions/workflows/tests.yml/badge.svg)](https://github.com/pagefaultgames/pokerogue/actions/workflows/tests.yml) +[![License: GNU AGPL v3](https://img.shields.io/badge/License-AGPL_v3-blue.svg)](https://www.gnu.org/licenses/agpl-3.0)
PokéRogue is a browser based Pokémon fangame heavily inspired by the roguelite genre. Battle endlessly while gathering stacking items, exploring many different biomes, fighting trainers, bosses, and more! @@ -7,7 +12,7 @@ PokéRogue is a browser based Pokémon fangame heavily inspired by the roguelite See [CONTRIBUTING.md](./CONTRIBUTING.md), this includes instructions on how to set up the game locally. # 📝 Credits -> + > If this project contains assets you have produced and you do not see your name, **please** reach out, either [here on GitHub](https://github.com/pagefaultgames/pokerogue/issues/new) or via [Discord](https://discord.gg/pokerogue). Thank you to all the wonderful people that have contributed to the PokéRogue project! You can find the credits [here](./CREDITS.md). diff --git a/RELEASE b/RELEASE new file mode 100644 index 00000000000..a1a9f30b0e8 --- /dev/null +++ b/RELEASE @@ -0,0 +1 @@ +Release v1.10.0 diff --git a/biome.jsonc b/biome.jsonc index a63ce0ee07d..e1aac032597 100644 --- a/biome.jsonc +++ b/biome.jsonc @@ -1,7 +1,7 @@ { - "$schema": "https://biomejs.dev/schemas/2.0.0/schema.json", + "$schema": "https://biomejs.dev/schemas/2.2.3/schema.json", "vcs": { - "enabled": false, + "enabled": true, "clientKind": "git", "useIgnoreFile": true, "defaultBranch": "beta" @@ -10,7 +10,7 @@ "enabled": true, "useEditorconfig": true, "indentStyle": "space", - "includes": ["**", "!**/src/enums/**/*", "!**/src/data/balance/**/*"], + "includes": ["**", "!**/src/data/balance/**"], "lineWidth": 120 }, "files": { @@ -19,14 +19,12 @@ // and having to verify whether each individual file is ignored "includes": [ "**", - "!**/dist/**/*", - "!**/build/**/*", - "!**/coverage/**/*", - "!**/public/**/*", - "!**/.github/**/*", - "!**/node_modules/**/*", - "!**/.vscode/**/*", - "!**/typedoc/**/*", + "!**/dist", + "!**/coverage", + "!**/public", + "!**/.github", + "!**/node_modules", + "!**/typedoc", // TODO: lint css and html? "!**/*.css", "!**/*.html", @@ -48,28 +46,75 @@ } } }, + // TODO: Remove unneeded `options` blocks once biome's JSON schema is fixed to not require them "linter": { "enabled": true, "rules": { "recommended": true, "correctness": { - "noUndeclaredVariables": "off", + "noUndeclaredVariables": "error", "noUnusedVariables": "error", "noSwitchDeclarations": "error", "noVoidTypeReturn": "error", "noUnusedImports": { "level": "error", - "fix": "safe" + "fix": "safe", + "options": {} }, "noUnusedFunctionParameters": "error", "noUnusedLabels": "error", - "noPrivateImports": "error" + "noPrivateImports": "error", + "useSingleJsDocAsterisk": "error", + "useJsonImportAttributes": "off" // "Import attributes are only supported when the '--module' option is set to 'esnext', 'node18', 'nodenext', or 'preserve'. ts(2823)" }, "style": { - "useEnumInitializers": "off", // large enums like Moves/Species would make this cumbersome + "useExplicitLengthCheck": { + "level": "error", + "fix": "safe", + "options": {} + }, + "useAtIndex": "error", + "noNegationElse": { + "level": "info", // TODO: Promote to error eventually + "fix": "unsafe", // duplicates else blocks + "options": {} + }, + // TODO: Fix all instances of this and promote to `error` - this and enums are the 2 things + // barring us from `esModuleInterop` + "noParameterProperties": "warn", + "useConsistentBuiltinInstantiation": { + "level": "error", + "fix": "safe", + "options": {} + }, + "noDefaultExport": "warn", // TODO: Fix `overrides.ts` and enable + "noShoutyConstants": "error", + "useThrowNewError": { + "level": "error", + "fix": "safe", + "options": {} + }, + "useThrowOnlyError": "error", + "useTrimStartEnd": "error", + "useReadonlyClassProperties": { + "level": "info", // TODO: Graduate to error eventually + "options": { "checkAllProperties": true } + }, + "useConsistentObjectDefinitions": { + "level": "error", + "options": { "syntax": "shorthand" } + }, + "useCollapsedIf": "error", + "useCollapsedElseIf": "error", + + "noSubstr": "error", + "noYodaExpression": "error", + "useForOf": "error", + "useEnumInitializers": "off", // large enums like MoveId/SpeciesId would make this cumbersome "useBlockStatements": { "level": "error", - "fix": "safe" + "fix": "safe", + "options": {} }, "useConst": "error", "useImportType": "error", @@ -80,9 +125,14 @@ // TODO: Fix spots in the codebase where this flag would be triggered // and then set to "error" and re-enable the fixer "level": "warn", - "fix": "none" + "fix": "none", + "options": {} + }, + "useSingleVarDeclarator": { + "level": "error", + "fix": "safe", + "options": {} }, - "useSingleVarDeclarator": "off", "useNodejsImportProtocol": "off", "useTemplate": "off", // string concatenation is faster: https://stackoverflow.com/questions/29055518/are-es6-template-literals-faster-than-string-concatenation "useAsConstAssertion": "error", @@ -100,58 +150,80 @@ } } } - } + }, + + // TODO: Wait until the rule gets options for ignoring doc comments and/or different parameter names, + // and THEN enable it codebase-wide + "useUnifiedTypeSignatures": { + "level": "info", + "fix": "none", + "options": {} + }, + "useGroupedAccessorPairs": "error", + "useObjectSpread": "error", + "useNumericSeparators": "off" // TODO: Consider enabling? }, "suspicious": { + "useErrorMessage": "error", + "noEvolvingTypes": "warn", // TODO: Review and enable ASAP - this is VERY VERY BAD + "useNumberToFixedDigitsArgument": "error", + "useGuardForIn": "warn", // TODO: Review and enable ASAP - this is EVEN FRICKING WORSE "noDoubleEquals": "error", // While this would be a nice rule to enable, the current structure of the codebase makes this infeasible // due to being used for move/ability `args` params and save data-related code. // This can likely be enabled for all non-utils files once these are eventually reworked, but until then we leave it off. "noExplicitAny": "off", "noAssignInExpressions": "off", - "noPrototypeBuiltins": "off", + "noPrototypeBuiltins": "off", // TODO: enable this "noFallthroughSwitchClause": "error", // Prevents accidental automatic fallthroughs in switch cases (use disable comment if needed) "noImplicitAnyLet": "warn", // TODO: Refactor and make this an error "noRedeclare": "info", // TODO: Refactor and make this an error - "noGlobalIsNan": "off", + "noGlobalIsNan": "error", "noAsyncPromiseExecutor": "warn", // TODO: Refactor and make this an error "noVar": "error", - "noDocumentCookie": "off" // Firefox has minimal support for the "Cookie Store API" + "noDocumentCookie": "off", // Firefox has minimal support for the "Cookie Store API" + "noConstantBinaryExpressions": "error", + "noTsIgnore": "error", + "useIterableCallbackReturn": "warn" // TODO: Refactor and change to error }, "complexity": { + "useWhile": "error", + "noVoid": "warn", // TODO: Review and enable ASAP - this is also bad + "noUselessStringConcat": "error", "noExcessiveCognitiveComplexity": "info", // TODO: Refactor and make this an error - "useLiteralKeys": "off", + "useLiteralKeys": "off", // TODO: enable? "noForEach": "off", // Foreach vs for of is not that simple. "noUselessSwitchCase": "off", // Explicit > Implicit "noUselessConstructor": "error", "noBannedTypes": "warn", // TODO: Refactor and make this an error "noThisInStatic": "error", "noUselessThisAlias": "error", - "noUselessTernary": "error" + "noUselessTernary": "error", + "useIndexOf": "error" }, "performance": { "noNamespaceImport": "error", - "noDelete": "error" + "noDelete": "error", + "noBarrelFile": "error" }, "nursery": { - "useAdjacentGetterSetter": "error", - "noConstantBinaryExpression": "error", - "noTsIgnore": "error", - "noAwaitInLoop": "off", - "useJsonImportAttribute": "off", // "Import attributes are only supported when the '--module' option is set to 'esnext', 'node18', 'nodenext', or 'preserve'. ts(2823)" - "useIndexOf": "error", - "useObjectSpread": "error", - "useNumericSeparators": "off", // TODO: enable? - "useIterableCallbackReturn": "warn", // TODO: refactor and make "error" - "noShadow": "warn" // TODO: refactor and make "error" + "noUselessUndefined": "error", + "useMaxParams": { + "level": "warn", // TODO: Change to "error"... eventually... + "options": { "max": 4 } // A lot of stuff has a few params, but + }, + "noShadow": "warn", // TODO: refactor and make "error" + "noNonNullAssertedOptionalChain": "warn" // TODO: refactor and make "error" } } }, "javascript": { "formatter": { "quoteStyle": "double", - "arrowParentheses": "asNeeded" + "arrowParentheses": "asNeeded", + "operatorLinebreak": "before" }, + "globals": ["Phaser"], "parser": { "jsxEverywhere": false } @@ -166,7 +238,7 @@ "noNamespaceImport": "off" // this is required for `vi.spyOn` to work in some tests }, "style": { - "noNonNullAssertion": "off" + "noNonNullAssertion": "off" // tedious in some tests }, "nursery": { "noFloatingPromises": "error" @@ -175,10 +247,17 @@ } }, - // Overrides to prevent unused import removal inside `overrides.ts` and enums files (for TSDoc linkcodes), - // as well as in all TS files in `scripts/` (which are assumed to be boilerplate templates). + // Overrides to prevent unused import removal inside `overrides.ts`, enums & `.d.ts` files (for TSDoc linkcodes), + // as well as inside script boilerplate files. { - "includes": ["**/src/overrides.ts", "**/src/enums/**/*", "**/scripts/**/*.ts", "**/*.d.ts"], + // TODO: Rename existing boilerplates in the folder and remove this last alias + "includes": [ + "**/src/overrides.ts", + "**/src/enums/**/*", + "**/*.d.ts", + "scripts/**/*.boilerplate.ts", + "**/boilerplates/*.ts" + ], "linter": { "rules": { "correctness": { @@ -188,7 +267,7 @@ } }, { - "includes": ["**/src/overrides.ts", "**/scripts/**/*.ts"], + "includes": ["**/src/overrides.ts"], "linter": { "rules": { "style": { diff --git a/docs/linting.md b/docs/linting.md index d925b2f29af..9301917ae79 100644 --- a/docs/linting.md +++ b/docs/linting.md @@ -1,48 +1,57 @@ # Linting & Formatting -Writing clean, readable code is important, and linters and formatters are an integral part of ensuring code quality and readability. +Writing clean, readable code is important, and linters and formatters are an integral part of ensuring code quality and readability. \ It is for this reason we are using [Biome](https://biomejs.dev), an opinionated linter/formatter (akin to Prettier) with a heavy focus on speed and performance. ### Installation -You probably installed Biome already without noticing it - it's included inside `package.json` and should've been downloaded when you ran `pnpm install` after cloning the repo. If you haven't done that yet, go do it. +You probably installed Biome already without noticing it - it's included inside `package.json` and should've been downloaded when you ran `pnpm install` after cloning the repo. If you haven't done that yet, go do that first. # Using Biome -For the most part, Biome attempts to stay "out of your hair", letting you write code while enforcing a consistent formatting standard and only notifying for errors it can't automatically fix.\ +For the most part, Biome attempts to stay "out of your hair", letting you write code while enforcing a consistent formatting standard and only notifying for errors it can't automatically fix. \ On the other hand, if Biome complains about a piece of code, **there's probably a good reason why**. Disable comments should be used sparingly or when readabilty demands it - your first instinct should be to fix the code in question, not disable the rule. ## Editor Integration Biome has integration with many popular code editors. See [these](https://biomejs.dev/guides/editors/first-party-extensions/) [pages](https://biomejs.dev/guides/editors/third-party-extensions/) for information about enabling Biome in your editor of choice. ## Automated Runs -Generally speaking, most users shouldn't need to run Biome directly; in addition to editor integration, [pre-commit hook](../lefthook.yml) will periodically run Biome before each commit. -You will **not** be able to push code with `error`-level linting problems - fix them beforehand. +Generally speaking, most users shouldn't need to run Biome directly; in addition to editor integration, a [pre-commit hook](../lefthook.yml) will automatically format and lint all staged files before each commit. -We also have a [Github Action](../.github/workflows/quality.yml) to verify code quality each time a PR is updated, preventing bad code from inadvertently making its way upstream. +> ![WARNING] +> You will **not** be able to commit code if any staged files contain `error`-level linting problems. \ +> If you, for whatever reason, _absolutely need_ to bypass Lefthook for a given commit, +> pass the `--no-verify` flag to `git commit`. + +We also have a [Github Action](../.github/workflows/linting.yml) to verify code quality each time a PR is updated, preventing bad code from inadvertently making its way upstream. \ +These are effectively the same commands as run by Lefthook, merely on a project-wide scale. ## Running Biome via CLI -If you want Biome to check your files manually, you can run it from the command line like so: +To run you Biome on your files manually, you have 2 main options: +1. Run the scripts included in `package.json` (`pnpm biome` and `pnpm biome:all`). \ + These have sensible defaults for command-line options, but do not allow altering certain flags (as some cannot be specified twice in the same command) -```sh -pnpm exec biome check --[flags] -``` +2. Execute the Biome executable manually from the command line like so: + ```sh + pnpm exec biome check --[flags] + ``` + This allows customizing non-overridable flags like `--diagnostic-level` on a more granular level, but requires slightly more verbosity and specifying more options. A full list of flags and options can be found on [their website](https://biomejs.dev/reference/cli/), but here's a few useful ones to keep in mind: -- `--write` will cause Biome to write all "safe" fixes and formatting changes directly to your files (rather than just complaining and doing nothing). -- `--changed` and `--staged` will only perform checks on all changed or staged files respectively. Biome sources this info from the relevant version control system (in this case Git). +- `--write` will cause Biome to write all "safe" fixes and formatting changes directly to your files (rather than just complaining and erroring out). +- `--changed` and `--staged` will limit checking to all changed or staged files respectively. Biome sources this info from the relevant version control system (in this case `git`). - `diagnostic-level=XXX` will only show diagnostics with at least the given severity level (`info/warn/error`). Useful to only focus on errors causing a failed workflow run or similar. ## Linting Rules -We primarily use Biome's [recommended ruleset](https://biomejs.dev/linter/rules/) for linting JS/TS, with some customizations to better suit our project's needs[^1]. +We primarily use Biome's [recommended ruleset](https://biomejs.dev/linter/rules/) for linting JS/TS files, with some customizations to better suit our project's needs[^1]. Some things to consider: - We have disabled rules that prioritize style over performance, such as `useTemplate`. -- Some rules are currently disabled or marked as warnings (`warn`) to allow for gradual refactoring without blocking development. **Do not write new code that triggers these warnings.** +- Some rules are currently marked as warnings (`warn`) to allow for gradual refactoring without blocking development. **Do not write new code that triggers these rules!** - The linter is configured to ignore specific files and folders (such as excessively large files or ones in need of refactoring) to improve performance and focus on actionable areas. -Any questions about linting rules should be brought up in the `#dev-corner` channel in the discord. +Any questions about linting rules can be brought up in the `#dev-corner` channel in the community Discord. -[^1]: A complete list of rules can be found in the `biome.jsonc` file in the project root. +[^1]: A complete list of rules can be found in the [`biome.jsonc`](../biome.jsonc) file in the project root. Many rules are accompanied by comments explaining the reasons for their inclusion (or lack thereof). diff --git a/docs/localization.md b/docs/localization.md index c325aaf55a9..e153d070818 100644 --- a/docs/localization.md +++ b/docs/localization.md @@ -1,6 +1,6 @@ # Localization 101 -PokéRogue's localization team puts immense effort into making the game accessible around the world, supporting over 12 different languages at the time of writing this document. +PokéRogue's localization team puts immense effort into making the game accessible around the world, supporting over 12 different languages at the time of writing this document. \ As a developer, it's important to help maintain global accessibility by effectively coordinating with the Translation Team on any new features or enhancements. This document aims to cover everything you need to know to help keep the integration process for localization smooth and simple. @@ -19,11 +19,12 @@ This repository is integrated into the main one as a [git submodule](https://git ## What Is a Submodule? -In essence, a submodule is a way for one repository (i.e. `pokerogue`) to use another repository (i.e. `pokerogue-locales`) internally. +In essence, a submodule is a way for one repository (i.e. `pokerogue`) to use another repository (i.e. `pokerogue-locales`) internally. The parent repo (the "superproject") houses a cloned version of the 2nd repository (the "submodule") inside it, making locales effectively a "repository within a repository", so to speak. >[!TIP] > Many popular IDEs have integrated `git` support with special handling around submodules: +> > ![Image showing Visual Studio Code's `git` integration in the File Explorer. A blue "S" in the top right hand corner indicates the `public/locales` folder is a submodule.](https://github.com/user-attachments/assets/bd42d354-c65b-4cbe-8873-23d760dc1714 "What the `public/locales` submodule looks like in VS Code's File Explorer") > > ![Image showing Visual Studio Code's Source Control tab. A separate dropdown can be seen for each individual submodule.](https://github.com/user-attachments/assets/8b4d3f64-aec1-4474-91df-03dc1252a2fa "Making commits on submodules without even changing directories!") @@ -32,14 +33,14 @@ The parent repo (the "superproject") houses a cloned version of the 2nd reposito The following command will initialize your branch's locales repository and update its HEAD: ```bash -git submodule update --init --recursive +pnpm update-locales ``` > [!TIP] > This command is run _automatically_ after cloning, merging or changing branches, so you should rarely have to run it manually. > [!IMPORTANT] -> If you run into issues with the `locales` submodule, try deleting the `.git/modules/public` and `public/locales` folders before re-running the command. +> If you EVER run into issues with the `locales` submodule, try deleting the `.git/modules/public` and `public/locales` folders before re-initializing it again. ## How Are Translations Integrated? @@ -65,7 +66,7 @@ The basic process for fetching translated text goes roughly as follows: ``` # Submitting Locales Changes -If you have a feature or enhancement that requires additions or changes to in-game text, you will need to make a fork of the `pokerogue-locales` repo and submit your text changes as a pull request _in addition_ to your pull request to the main project. +If you have a feature or enhancement that requires additions or changes to in-game text, you will need to make a fork of the `pokerogue-locales` repo and submit your text changes as a pull request _in addition_ to your pull request to the main project. \ Since these two PRs aren't _technically_ linked, it's important to coordinate with the Translation Team to ensure that both PRs are integrated safely into the project. > [!CAUTION] @@ -73,29 +74,29 @@ Since these two PRs aren't _technically_ linked, it's important to coordinate wi ## Making Changes -One perk of submodules is you don't actually _need_ to clone the locales repository to start contributing - initializing the submodule already does that for you. +One perk of submodules is you don't actually _need_ to clone the locales repository to start contributing - `git` already does that for you on initialization. Given `pokerogue-locales` is a full-fledged `git` repository _inside_ `pokerogue`, making changes is roughly the same as normal, merely using `public/locales` as your root directory. > [!WARNING] -> Make sure to checkout or rebase onto `upstream/HEAD` **BEFORE** creating a PR! +> Make sure to checkout or rebase onto `upstream/main` (`pnpm update-locales:remote`) **BEFORE** creating a locales PR! > The checked-out commit is based on the superproject's SHA-1 by default, so hastily making changes may see you basing your commits on last week's `HEAD`. ## Requirements for Adding Translated Text -When your new feature or enhancement requires adding a new locales key **without changing text in existing keys**, we require the following workflow with regards to localization: +When a new feature or enhancement requires adding a new locales key **without changing text in existing keys**, we have the following workflow with regards to localization: 1. You (the developer) make a pull request to the main repository for your new feature. If this feature requires new text, the text should be integrated into the code with a new `i18next` key pointing to where you plan to add it into the locales repository. 2. You then make another pull request — this time to the `pokerogue-locales` repository — adding a new entry with text for each key you added to your main PR. - - You must add the corresponding **English keys** while making the PR; the Translation Team can take care of the rest[^2]. - - For any feature pulled from the mainline Pokémon games (e.g. a Move or Ability implementation), it's best practice to include a source link for any added text. - [Poké Corpus](https://abcboy101.github.io/poke-corpus/) is a great resource for finding text from the mainline games; otherwise, a video/picture showing the text being displayed should suffice. - - You should also [notify the current Head of Translation](#notifying-translation) to ensure a fast response. + - You must add the corresponding **English keys** while making the PR; the Translation Team can take care of the rest[^2]. + - For any feature pulled from the mainline Pokémon games (e.g. a Move or Ability implementation), it's best practice to include a source link for any added text. \ + [Poké Corpus](https://abcboy101.github.io/poke-corpus/) is a great resource for finding text from the mainline games; otherwise, a video/picture showing the text being displayed should suffice. + - You should also [notify the current Head of Translation](#notifying-translation) to ensure a fast response. 3. Your locales should use the following format: - File names should be in `kebab-case`. Example: `trainer-names.json` - Key names should be in `camelCase`. Example: `aceTrainer` - If you make use of i18next's inbuilt [context support](https://www.i18next.com/translation-function/context), you need to use `snake_case` for the context key. Example: `aceTrainer_male` 4. At this point, you may begin [testing locales integration in your main PR](#documenting-locales-changes). -5. The Translation Team will approve the locale PR (after corrections, if necessary), then merge it into `pokerogue-locales`. +5. The Translation Team will approve the locales PR (after corrections, if necessary), then merge it into `pokerogue-locales`. 6. The Dev Team will approve your main PR for your feature, then merge it into PokéRogue's beta environment. [^2]: For those wondering, the reason for choosing English specifically is due to it being the master language set in Pontoon (the program used by the Translation Team to perform locale updates). @@ -106,7 +107,7 @@ If a key is present in any language _except_ the master language, it won't appea PRs that modify existing text have different risks with respect to coordination between development and translation, so their requirements are slightly different: - As above, you set up 2 PRs: one for the feature itself in the main repo, and another for the associated locales changes in the locale repo. - Now, however, you need to have your main PR be approved by the Dev Team **before** your corresponding locale changes are merged in. -- After your main PR is approved, the Translation Team will merge your locale PR, and you may update the submodule and post video evidence of integration into the **locales PR**. +- After your main PR is approved, you may update the submodule and post video evidence of integration into the **locales PR**. - A Lead or Senior Translator from the Translation Team will then approve your main PR (if all is well), clearing your feature for merging into `beta`. ## Documenting Locales Changes @@ -115,12 +116,12 @@ After making a PR involving any outwards-facing behavior (but _especially_ local The basic procedure is roughly as follows: 1. Update your locales submodule to point to **the branch you used to make the locales PR**. \ - Many IDEs with `git` integration support doing this from the GUI, \ - or you can simply do it via command-line: - ```bash - cd public/locales - git checkout your-branch-name-here - ``` + Many IDEs with `git` integration support doing this from the GUI, \ + or you can simply do it via command-line: + ```bash + cd public/locales + git checkout your-branch-name-here + ``` 2. Set some of the [in-game overrides](../CONTRIBUTING.md#1---manual-testing) inside `overrides.ts` to values corresponding to the interactions being tested. 3. Start a local dev server (`pnpm start:dev`) and open localhost in your browser. 4. Take screenshots or record a video of the locales changes being displayed in-game using the software of your choice[^2]. diff --git a/global.d.ts b/global.d.ts index 8b79d966e3c..92a883f40c9 100644 --- a/global.d.ts +++ b/global.d.ts @@ -18,3 +18,14 @@ declare global { call(this: T, thisArg: ThisParameterType, ...argArray: Parameters): ReturnType; } } + +// Global augments for `typedoc` to prevent TS from erroring when editing the config JS file +declare module "typedoc" { + export interface TypeDocOptionMap { + coverageLabel: string; + coverageColor: string; + coverageOutputPath: string; + coverageOutputType: "svg" | "json" | "all"; + coverageSvgWidth: number; + } +} diff --git a/lefthook.yml b/lefthook.yml index 8b5ad2234ed..c26ea8705b9 100644 --- a/lefthook.yml +++ b/lefthook.yml @@ -1,10 +1,12 @@ pre-commit: - skip: + skip: - merge - rebase commands: biome-lint: - run: pnpm exec biome check --write --reporter=summary --staged --no-errors-on-unmatched + # Disable colors as certain IDEs don't support it in the output pane. + # Summary mode looks decent in plain ASCII anyhow + run: pnpm exec biome check --write --colors=off --reporter=summary --staged --no-errors-on-unmatched --diagnostic-level=error stage_fixed: true ls-lint: run: pnpm exec ls-lint @@ -12,11 +14,11 @@ pre-commit: post-merge: commands: update-submodules: - run: git submodule update --init --recursive + run: pnpm update-locales post-checkout: commands: update-submodules: # cf https://git-scm.com/docs/githooks#_post_checkout: # The 3rd argument is 1 for branch checkouts and 0 for file checkouts. - run: if test {3} -eq "1"; then git submodule update --init --recursive; fi \ No newline at end of file + run: if test {3} -eq "1"; then pnpm update-locales; fi \ No newline at end of file diff --git a/package.json b/package.json index d3ea890c005..65936f2599a 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,11 @@ { "name": "pokemon-rogue-battle", "private": true, - "version": "1.9.6", + "version": "1.10.7", "type": "module", "scripts": { - "start": "vite", + "start:prod": "vite --mode production", + "start:beta": "vite --mode beta", "start:dev": "vite --mode development", "build": "vite build", "build:beta": "vite build --mode beta", @@ -14,24 +15,30 @@ "test:watch": "vitest watch --coverage --no-isolate", "test:silent": "vitest run --silent='passed-only' --no-isolate", "test:create": "node scripts/create-test/create-test.js", + "eggMoves:parse": "node scripts/parse-egg-moves/main.js", + "scrape-trainers": "node scripts/scrape-trainer-names/main.js", "typecheck": "tsc --noEmit", + "typecheck:scripts": "tsc -p scripts/jsconfig.json", "biome": "biome check --write --changed --no-errors-on-unmatched --diagnostic-level=error", + "biome:all": "biome check --write --no-errors-on-unmatched --diagnostic-level=error", "biome-ci": "biome ci --diagnostic-level=error --reporter=github --no-errors-on-unmatched", - "docs": "typedoc", + "typedoc": "typedoc", "depcruise": "depcruise src test", "postinstall": "lefthook install; git submodule update --init --recursive", "update-version:patch": "pnpm version patch --force --no-git-tag-version", "update-version:minor": "pnpm version minor --force --no-git-tag-version", + "update-locales": "git submodule update --progress --init --recursive", "update-locales:remote": "git submodule update --progress --init --recursive --force --remote" }, "devDependencies": { - "@biomejs/biome": "2.0.0", + "@biomejs/biome": "2.2.3", "@ls-lint/ls-lint": "2.3.1", "@types/crypto-js": "^4.2.0", "@types/jsdom": "^21.1.7", "@types/node": "^22.16.5", "@vitest/coverage-istanbul": "^3.2.4", "@vitest/expect": "^3.2.4", + "@vitest/utils": "^3.2.4", "chalk": "^5.4.1", "dependency-cruiser": "^16.10.4", "inquirer": "^12.8.2", @@ -40,6 +47,9 @@ "msw": "^2.10.4", "phaser3spectorjs": "^0.0.8", "typedoc": "^0.28.8", + "typedoc-github-theme": "^0.3.1", + "typedoc-plugin-coverage": "^4.0.1", + "typedoc-plugin-mdn-links": "^5.0.9", "typescript": "^5.8.3", "vite": "^7.0.6", "vite-tsconfig-paths": "^5.1.4", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c3b58a60f48..54012c3dd86 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -43,8 +43,8 @@ importers: version: 1.80.16(graphology-types@0.24.8) devDependencies: '@biomejs/biome': - specifier: 2.0.0 - version: 2.0.0 + specifier: 2.2.3 + version: 2.2.3 '@ls-lint/ls-lint': specifier: 2.3.1 version: 2.3.1 @@ -63,6 +63,9 @@ importers: '@vitest/expect': specifier: ^3.2.4 version: 3.2.4 + '@vitest/utils': + specifier: ^3.2.4 + version: 3.2.4 chalk: specifier: ^5.4.1 version: 5.4.1 @@ -87,6 +90,15 @@ importers: typedoc: specifier: ^0.28.8 version: 0.28.8(typescript@5.8.3) + typedoc-github-theme: + specifier: ^0.3.1 + version: 0.3.1(typedoc@0.28.8(typescript@5.8.3)) + typedoc-plugin-coverage: + specifier: ^4.0.1 + version: 4.0.1(typedoc@0.28.8(typescript@5.8.3)) + typedoc-plugin-mdn-links: + specifier: ^5.0.9 + version: 5.0.9(typedoc@0.28.8(typescript@5.8.3)) typescript: specifier: ^5.8.3 version: 5.8.3 @@ -183,55 +195,55 @@ packages: resolution: {integrity: sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==} engines: {node: '>=6.9.0'} - '@biomejs/biome@2.0.0': - resolution: {integrity: sha512-BlUoXEOI/UQTDEj/pVfnkMo8SrZw3oOWBDrXYFT43V7HTkIUDkBRY53IC5Jx1QkZbaB+0ai1wJIfYwp9+qaJTQ==} + '@biomejs/biome@2.2.3': + resolution: {integrity: sha512-9w0uMTvPrIdvUrxazZ42Ib7t8Y2yoGLKLdNne93RLICmaHw7mcLv4PPb5LvZLJF3141gQHiCColOh/v6VWlWmg==} engines: {node: '>=14.21.3'} hasBin: true - '@biomejs/cli-darwin-arm64@2.0.0': - resolution: {integrity: sha512-QvqWYtFFhhxdf8jMAdJzXW+Frc7X8XsnHQLY+TBM1fnT1TfeV/v9vsFI5L2J7GH6qN1+QEEJ19jHibCY2Ypplw==} + '@biomejs/cli-darwin-arm64@2.2.3': + resolution: {integrity: sha512-OrqQVBpadB5eqzinXN4+Q6honBz+tTlKVCsbEuEpljK8ASSItzIRZUA02mTikl3H/1nO2BMPFiJ0nkEZNy3B1w==} engines: {node: '>=14.21.3'} cpu: [arm64] os: [darwin] - '@biomejs/cli-darwin-x64@2.0.0': - resolution: {integrity: sha512-5JFhls1EfmuIH4QGFPlNpxJQFC6ic3X1ltcoLN+eSRRIPr6H/lUS1ttuD0Fj7rPgPhZqopK/jfH8UVj/1hIsQw==} + '@biomejs/cli-darwin-x64@2.2.3': + resolution: {integrity: sha512-OCdBpb1TmyfsTgBAM1kPMXyYKTohQ48WpiN9tkt9xvU6gKVKHY4oVwteBebiOqyfyzCNaSiuKIPjmHjUZ2ZNMg==} engines: {node: '>=14.21.3'} cpu: [x64] os: [darwin] - '@biomejs/cli-linux-arm64-musl@2.0.0': - resolution: {integrity: sha512-Bxsz8ki8+b3PytMnS5SgrGV+mbAWwIxI3ydChb/d1rURlJTMdxTTq5LTebUnlsUWAX6OvJuFeiVq9Gjn1YbCyA==} + '@biomejs/cli-linux-arm64-musl@2.2.3': + resolution: {integrity: sha512-q3w9jJ6JFPZPeqyvwwPeaiS/6NEszZ+pXKF+IczNo8Xj6fsii45a4gEEicKyKIytalV+s829ACZujQlXAiVLBQ==} engines: {node: '>=14.21.3'} cpu: [arm64] os: [linux] - '@biomejs/cli-linux-arm64@2.0.0': - resolution: {integrity: sha512-BAH4QVi06TzAbVchXdJPsL0Z/P87jOfes15rI+p3EX9/EGTfIjaQ9lBVlHunxcmoptaA5y1Hdb9UYojIhmnjIw==} + '@biomejs/cli-linux-arm64@2.2.3': + resolution: {integrity: sha512-g/Uta2DqYpECxG+vUmTAmUKlVhnGEcY7DXWgKP8ruLRa8Si1QHsWknPY3B/wCo0KgYiFIOAZ9hjsHfNb9L85+g==} engines: {node: '>=14.21.3'} cpu: [arm64] os: [linux] - '@biomejs/cli-linux-x64-musl@2.0.0': - resolution: {integrity: sha512-tiQ0ABxMJb9I6GlfNp0ulrTiQSFacJRJO8245FFwE3ty3bfsfxlU/miblzDIi+qNrgGsLq5wIZcVYGp4c+HXZA==} + '@biomejs/cli-linux-x64-musl@2.2.3': + resolution: {integrity: sha512-y76Dn4vkP1sMRGPFlNc+OTETBhGPJ90jY3il6jAfur8XWrYBQV3swZ1Jo0R2g+JpOeeoA0cOwM7mJG6svDz79w==} engines: {node: '>=14.21.3'} cpu: [x64] os: [linux] - '@biomejs/cli-linux-x64@2.0.0': - resolution: {integrity: sha512-09PcOGYTtkopWRm6mZ/B6Mr6UHdkniUgIG/jLBv+2J8Z61ezRE+xQmpi3yNgUrFIAU4lPA9atg7mhvE/5Bo7Wg==} + '@biomejs/cli-linux-x64@2.2.3': + resolution: {integrity: sha512-LEtyYL1fJsvw35CxrbQ0gZoxOG3oZsAjzfRdvRBRHxOpQ91Q5doRVjvWW/wepgSdgk5hlaNzfeqpyGmfSD0Eyw==} engines: {node: '>=14.21.3'} cpu: [x64] os: [linux] - '@biomejs/cli-win32-arm64@2.0.0': - resolution: {integrity: sha512-vrTtuGu91xNTEQ5ZcMJBZuDlqr32DWU1r14UfePIGndF//s2WUAmer4FmgoPgruo76rprk37e8S2A2c0psXdxw==} + '@biomejs/cli-win32-arm64@2.2.3': + resolution: {integrity: sha512-Ms9zFYzjcJK7LV+AOMYnjN3pV3xL8Prxf9aWdDVL74onLn5kcvZ1ZMQswE5XHtnd/r/0bnUd928Rpbs14BzVmA==} engines: {node: '>=14.21.3'} cpu: [arm64] os: [win32] - '@biomejs/cli-win32-x64@2.0.0': - resolution: {integrity: sha512-2USVQ0hklNsph/KIR72ZdeptyXNnQ3JdzPn3NbjI4Sna34CnxeiYAaZcZzXPDl5PYNFBivV4xmvT3Z3rTmyDBg==} + '@biomejs/cli-win32-x64@2.2.3': + resolution: {integrity: sha512-gvCpewE7mBwBIpqk1YrUqNR4mCiyJm6UI3YWQQXkedSSEwzRdodRpaKhbdbHw1/hmTWOVXQ+Eih5Qctf4TCVOQ==} engines: {node: '>=14.21.3'} cpu: [x64] os: [win32] @@ -1789,6 +1801,23 @@ packages: resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==} engines: {node: '>=16'} + typedoc-github-theme@0.3.1: + resolution: {integrity: sha512-j6PmkAGmf/MGCzYjQcUH6jS9djPsNl/IoTXooxC+MoeMkBhbmPyKJlpR6Lw12BLoe2OYpYA2J1KMktUJXp/8Sw==} + engines: {node: '>=18.0.0'} + peerDependencies: + typedoc: ~0.28.0 + + typedoc-plugin-coverage@4.0.1: + resolution: {integrity: sha512-P1QBR5GJSfW3fDrpz4Vkd8z8lzWaBYjaHebRLk0u2Uga0oSFlPaqrCyiHzItBXxZX28aMlNlZwrUnsLgUgqA7g==} + engines: {node: '>= 18'} + peerDependencies: + typedoc: 0.28.x + + typedoc-plugin-mdn-links@5.0.9: + resolution: {integrity: sha512-kXssRKBhUd0JeHzFmxWVsGWVFR9WXafe70Y8Ed+MYH2Nu2647cqfGQN1OBKgvXpmAT8MTpACmUIQ7GnQnh1/iw==} + peerDependencies: + typedoc: 0.27.x || 0.28.x + typedoc@0.28.8: resolution: {integrity: sha512-16GfLopc8icHfdvqZDqdGBoS2AieIRP2rpf9mU+MgN+gGLyEQvAO0QgOa6NJ5QNmQi0LFrDY9in4F2fUNKgJKA==} engines: {node: '>= 18', pnpm: '>= 10'} @@ -2125,39 +2154,39 @@ snapshots: '@babel/helper-string-parser': 7.27.1 '@babel/helper-validator-identifier': 7.27.1 - '@biomejs/biome@2.0.0': + '@biomejs/biome@2.2.3': optionalDependencies: - '@biomejs/cli-darwin-arm64': 2.0.0 - '@biomejs/cli-darwin-x64': 2.0.0 - '@biomejs/cli-linux-arm64': 2.0.0 - '@biomejs/cli-linux-arm64-musl': 2.0.0 - '@biomejs/cli-linux-x64': 2.0.0 - '@biomejs/cli-linux-x64-musl': 2.0.0 - '@biomejs/cli-win32-arm64': 2.0.0 - '@biomejs/cli-win32-x64': 2.0.0 + '@biomejs/cli-darwin-arm64': 2.2.3 + '@biomejs/cli-darwin-x64': 2.2.3 + '@biomejs/cli-linux-arm64': 2.2.3 + '@biomejs/cli-linux-arm64-musl': 2.2.3 + '@biomejs/cli-linux-x64': 2.2.3 + '@biomejs/cli-linux-x64-musl': 2.2.3 + '@biomejs/cli-win32-arm64': 2.2.3 + '@biomejs/cli-win32-x64': 2.2.3 - '@biomejs/cli-darwin-arm64@2.0.0': + '@biomejs/cli-darwin-arm64@2.2.3': optional: true - '@biomejs/cli-darwin-x64@2.0.0': + '@biomejs/cli-darwin-x64@2.2.3': optional: true - '@biomejs/cli-linux-arm64-musl@2.0.0': + '@biomejs/cli-linux-arm64-musl@2.2.3': optional: true - '@biomejs/cli-linux-arm64@2.0.0': + '@biomejs/cli-linux-arm64@2.2.3': optional: true - '@biomejs/cli-linux-x64-musl@2.0.0': + '@biomejs/cli-linux-x64-musl@2.2.3': optional: true - '@biomejs/cli-linux-x64@2.0.0': + '@biomejs/cli-linux-x64@2.2.3': optional: true - '@biomejs/cli-win32-arm64@2.0.0': + '@biomejs/cli-win32-arm64@2.2.3': optional: true - '@biomejs/cli-win32-x64@2.0.0': + '@biomejs/cli-win32-x64@2.2.3': optional: true '@bundled-es-modules/cookie@2.0.1': @@ -3634,6 +3663,18 @@ snapshots: type-fest@4.41.0: {} + typedoc-github-theme@0.3.1(typedoc@0.28.8(typescript@5.8.3)): + dependencies: + typedoc: 0.28.8(typescript@5.8.3) + + typedoc-plugin-coverage@4.0.1(typedoc@0.28.8(typescript@5.8.3)): + dependencies: + typedoc: 0.28.8(typescript@5.8.3) + + typedoc-plugin-mdn-links@5.0.9(typedoc@0.28.8(typescript@5.8.3)): + dependencies: + typedoc: 0.28.8(typescript@5.8.3) + typedoc@0.28.8(typescript@5.8.3): dependencies: '@gerrit0/mini-shiki': 3.8.1 diff --git a/public/battle-anims/common-wind.json b/public/battle-anims/common-wind.json index f59f95c007f..7c2cbc0fb0f 100644 --- a/public/battle-anims/common-wind.json +++ b/public/battle-anims/common-wind.json @@ -1102,6 +1102,112 @@ "volume": 100, "pitch": 136, "eventType": "AnimTimedSoundEvent" + }, + { + "frameIndex": 0, + "resourceName": "PRAS- Strong Winds", + "bgX": 0, + "bgY": 0, + "opacity": 0, + "duration": 4, + "eventType": "AnimTimedAddBgEvent" + }, + { + "frameIndex": 0, + "resourceName": "", + "bgX": 0, + "bgY": 0, + "opacity": 32, + "duration": 4, + "eventType": "AnimTimedUpdateBgEvent" + } + ], + "4": [ + { + "frameIndex": 4, + "resourceName": "", + "bgX": 10, + "bgY": 0, + "opacity": 64, + "duration": 4, + "eventType": "AnimTimedUpdateBgEvent" + } + ], + "8": [ + { + "frameIndex": 8, + "resourceName": "", + "bgX": 20, + "bgY": 0, + "opacity": 128, + "duration": 4, + "eventType": "AnimTimedUpdateBgEvent" + } + ], + "12": [ + { + "frameIndex": 12, + "resourceName": "", + "bgX": 30, + "bgY": 0, + "opacity": 128, + "duration": 4, + "eventType": "AnimTimedUpdateBgEvent" + } + ], + "16": [ + { + "frameIndex": 16, + "resourceName": "", + "bgX": 40, + "bgY": 0, + "opacity": 128, + "duration": 4, + "eventType": "AnimTimedUpdateBgEvent" + } + ], + "20": [ + { + "frameIndex": 20, + "resourceName": "", + "bgX": 50, + "bgY": 0, + "opacity": 128, + "duration": 4, + "eventType": "AnimTimedUpdateBgEvent" + } + ], + "24": [ + { + "frameIndex": 24, + "resourceName": "", + "bgX": 60, + "bgY": 0, + "opacity": 64, + "duration": 4, + "eventType": "AnimTimedUpdateBgEvent" + } + ], + "28": [ + { + "frameIndex": 28, + "resourceName": "", + "bgX": 70, + "bgY": 0, + "opacity": 32, + "duration": 4, + "eventType": "AnimTimedUpdateBgEvent" + } + ], + "32": [ + { + "frameIndex": 32, + "resourceName": "", + "bgX": 80, + "bgY": 0, + "opacity": 0, + "duration": 3, + "eventType": "AnimTimedUpdateBgEvent" } ] }, diff --git a/public/images/arenas/beach_b_2.png b/public/images/arenas/beach_b_2.png index 50c9be97b0d..6c3e89c1b25 100644 Binary files a/public/images/arenas/beach_b_2.png and b/public/images/arenas/beach_b_2.png differ diff --git a/public/images/arenas/cave_b_2.png b/public/images/arenas/cave_b_2.png index f76560e1f03..99c850ecdf6 100644 Binary files a/public/images/arenas/cave_b_2.png and b/public/images/arenas/cave_b_2.png differ diff --git a/public/images/arenas/factory_b_3.png b/public/images/arenas/factory_b_3.png index f2bb93128cf..e7716f0e168 100644 Binary files a/public/images/arenas/factory_b_3.png and b/public/images/arenas/factory_b_3.png differ diff --git a/public/images/arenas/forest_b.png b/public/images/arenas/forest_b.png index dcd1981a5e9..9f2cfc20c09 100644 Binary files a/public/images/arenas/forest_b.png and b/public/images/arenas/forest_b.png differ diff --git a/public/images/arenas/ice_cave_b_2.png b/public/images/arenas/ice_cave_b_2.png index d7e6fb1784e..636f4e95946 100644 Binary files a/public/images/arenas/ice_cave_b_2.png and b/public/images/arenas/ice_cave_b_2.png differ diff --git a/public/images/arenas/island_bg.png b/public/images/arenas/island_bg.png index e05c3afa775..8a8d703af5d 100644 Binary files a/public/images/arenas/island_bg.png and b/public/images/arenas/island_bg.png differ diff --git a/public/images/arenas/jungle_bg.png b/public/images/arenas/jungle_bg.png index e03de2a3223..4a8fa41fbb3 100644 Binary files a/public/images/arenas/jungle_bg.png and b/public/images/arenas/jungle_bg.png differ diff --git a/public/images/arenas/laboratory_b_2.png b/public/images/arenas/laboratory_b_2.png index fcd945b8b86..b5d73b8a9ed 100644 Binary files a/public/images/arenas/laboratory_b_2.png and b/public/images/arenas/laboratory_b_2.png differ diff --git a/public/images/arenas/laboratory_bg.png b/public/images/arenas/laboratory_bg.png index 0e64877c0b6..decb26240b3 100644 Binary files a/public/images/arenas/laboratory_bg.png and b/public/images/arenas/laboratory_bg.png differ diff --git a/public/images/arenas/lake_b_1.png b/public/images/arenas/lake_b_1.png index 5426dd1e8d9..8786fb6c728 100644 Binary files a/public/images/arenas/lake_b_1.png and b/public/images/arenas/lake_b_1.png differ diff --git a/public/images/arenas/lake_b_2.png b/public/images/arenas/lake_b_2.png index b08ccd7b8e4..454c9e89d29 100644 Binary files a/public/images/arenas/lake_b_2.png and b/public/images/arenas/lake_b_2.png differ diff --git a/public/images/arenas/metropolis_bg.png b/public/images/arenas/metropolis_bg.png index 374744f245e..b790221b323 100644 Binary files a/public/images/arenas/metropolis_bg.png and b/public/images/arenas/metropolis_bg.png differ diff --git a/public/images/arenas/plains_b_2.png b/public/images/arenas/plains_b_2.png index a35dbec9917..4d8d679d12f 100644 Binary files a/public/images/arenas/plains_b_2.png and b/public/images/arenas/plains_b_2.png differ diff --git a/public/images/arenas/plains_bg.png b/public/images/arenas/plains_bg.png index f2cbec9197c..9c0cff9b7dc 100644 Binary files a/public/images/arenas/plains_bg.png and b/public/images/arenas/plains_bg.png differ diff --git a/public/images/arenas/snowy_forest_b_3.png b/public/images/arenas/snowy_forest_b_3.png index 14c8f4c64aa..d8c89496d14 100644 Binary files a/public/images/arenas/snowy_forest_b_3.png and b/public/images/arenas/snowy_forest_b_3.png differ diff --git a/public/images/arenas/snowy_forest_bg.png b/public/images/arenas/snowy_forest_bg.png index b0dcc3ddfc5..62ff03f5b1c 100644 Binary files a/public/images/arenas/snowy_forest_bg.png and b/public/images/arenas/snowy_forest_bg.png differ diff --git a/public/images/arenas/wasteland_b_1.png b/public/images/arenas/wasteland_b_1.png index d10a7f27699..7f62b29f9a8 100644 Binary files a/public/images/arenas/wasteland_b_1.png and b/public/images/arenas/wasteland_b_1.png differ diff --git a/public/images/arenas/wasteland_b_3.png b/public/images/arenas/wasteland_b_3.png index cdc5a2bdd50..73a5b283861 100644 Binary files a/public/images/arenas/wasteland_b_3.png and b/public/images/arenas/wasteland_b_3.png differ diff --git a/public/images/battle_anims/PRAS- Pulverizing Pancake BG2.png b/public/images/battle_anims/PRAS- Pulverizing Pancake BG2.png index 44b50a6d385..4c55dd5f1c8 100644 Binary files a/public/images/battle_anims/PRAS- Pulverizing Pancake BG2.png and b/public/images/battle_anims/PRAS- Pulverizing Pancake BG2.png differ diff --git a/public/images/battle_anims/PRAS- Pulverizing Pancake.png b/public/images/battle_anims/PRAS- Pulverizing Pancake.png index 519a52c63c6..b284493c6da 100644 Binary files a/public/images/battle_anims/PRAS- Pulverizing Pancake.png and b/public/images/battle_anims/PRAS- Pulverizing Pancake.png differ diff --git a/public/images/battle_anims/PRAS- Spectral thief BG.png b/public/images/battle_anims/PRAS- Spectral thief BG.png index 35fc434fdca..92c356c5ec5 100644 Binary files a/public/images/battle_anims/PRAS- Spectral thief BG.png and b/public/images/battle_anims/PRAS- Spectral thief BG.png differ diff --git a/public/images/egg/egg_crack.png b/public/images/egg/egg_crack.png index 9d553ebf378..f5b5ee7b7e1 100644 Binary files a/public/images/egg/egg_crack.png and b/public/images/egg/egg_crack.png differ diff --git a/public/images/items.json b/public/images/items.json index 7b332442f04..40c14389ab2 100644 --- a/public/images/items.json +++ b/public/images/items.json @@ -4,11 +4,32 @@ "image": "items.png", "format": "RGBA8888", "size": { - "w": 434, - "h": 434 + "w": 435, + "h": 435 }, "scale": 1, "frames": [ + { + "filename": "calendar", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 32, + "h": 29 + }, + "frame": { + "x": 0, + "y": 0, + "w": 32, + "h": 29 + } + }, { "filename": "galarica_cuff", "rotated": false, @@ -25,7 +46,7 @@ }, "frame": { "x": 0, - "y": 0, + "y": 29, "w": 29, "h": 30 } @@ -45,7 +66,7 @@ "h": 27 }, "frame": { - "x": 29, + "x": 32, "y": 0, "w": 32, "h": 27 @@ -67,7 +88,7 @@ }, "frame": { "x": 0, - "y": 30, + "y": 59, "w": 29, "h": 28 } @@ -87,8 +108,8 @@ "h": 28 }, "frame": { - "x": 29, - "y": 27, + "x": 64, + "y": 0, "w": 30, "h": 28 } @@ -108,8 +129,8 @@ "h": 27 }, "frame": { - "x": 61, - "y": 0, + "x": 0, + "y": 87, "w": 29, "h": 27 } @@ -129,54 +150,12 @@ "h": 28 }, "frame": { - "x": 0, - "y": 58, + "x": 94, + "y": 0, "w": 28, "h": 28 } }, - { - "filename": "bronze_ribbon", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 22, - "h": 31 - }, - "frame": { - "x": 0, - "y": 86, - "w": 22, - "h": 31 - } - }, - { - "filename": "great_ribbon", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 22, - "h": 31 - }, - "frame": { - "x": 0, - "y": 117, - "w": 22, - "h": 31 - } - }, { "filename": "linking_cord", "rotated": false, @@ -192,75 +171,12 @@ "h": 26 }, "frame": { - "x": 59, - "y": 27, + "x": 0, + "y": 114, "w": 27, "h": 26 } }, - { - "filename": "master_ribbon", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 22, - "h": 31 - }, - "frame": { - "x": 0, - "y": 148, - "w": 22, - "h": 31 - } - }, - { - "filename": "rogue_ribbon", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 22, - "h": 31 - }, - "frame": { - "x": 0, - "y": 179, - "w": 22, - "h": 31 - } - }, - { - "filename": "ultra_ribbon", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 22, - "h": 31 - }, - "frame": { - "x": 0, - "y": 210, - "w": 22, - "h": 31 - } - }, { "filename": "inverse", "rotated": false, @@ -277,7 +193,7 @@ }, "frame": { "x": 0, - "y": 241, + "y": 140, "w": 22, "h": 30 } @@ -298,7 +214,7 @@ }, "frame": { "x": 0, - "y": 271, + "y": 170, "w": 22, "h": 29 } @@ -319,7 +235,7 @@ }, "frame": { "x": 0, - "y": 300, + "y": 199, "w": 22, "h": 29 } @@ -340,7 +256,7 @@ }, "frame": { "x": 0, - "y": 329, + "y": 228, "w": 22, "h": 29 } @@ -360,7 +276,7 @@ "h": 26 }, "frame": { - "x": 90, + "x": 122, "y": 0, "w": 24, "h": 26 @@ -382,7 +298,7 @@ }, "frame": { "x": 0, - "y": 358, + "y": 257, "w": 22, "h": 28 } @@ -403,13 +319,13 @@ }, "frame": { "x": 0, - "y": 386, + "y": 285, "w": 22, "h": 28 } }, { - "filename": "chipped_pot", + "filename": "ribbon_gen6", "rotated": false, "trimmed": true, "sourceSize": { @@ -417,16 +333,37 @@ "h": 32 }, "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 26, - "h": 20 + "x": 5, + "y": 2, + "w": 22, + "h": 28 }, "frame": { "x": 0, - "y": 414, - "w": 26, - "h": 20 + "y": 313, + "w": 22, + "h": 28 + } + }, + { + "filename": "ribbon_gen8", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 2, + "w": 22, + "h": 28 + }, + "frame": { + "x": 0, + "y": 341, + "w": 22, + "h": 28 } }, { @@ -444,7 +381,7 @@ "h": 26 }, "frame": { - "x": 114, + "x": 146, "y": 0, "w": 23, "h": 26 @@ -465,7 +402,7 @@ "h": 22 }, "frame": { - "x": 137, + "x": 169, "y": 0, "w": 27, "h": 22 @@ -486,7 +423,7 @@ "h": 21 }, "frame": { - "x": 164, + "x": 196, "y": 0, "w": 28, "h": 21 @@ -507,7 +444,7 @@ "h": 21 }, "frame": { - "x": 192, + "x": 224, "y": 0, "w": 28, "h": 21 @@ -528,7 +465,7 @@ "h": 21 }, "frame": { - "x": 220, + "x": 252, "y": 0, "w": 28, "h": 21 @@ -549,7 +486,7 @@ "h": 21 }, "frame": { - "x": 248, + "x": 280, "y": 0, "w": 28, "h": 21 @@ -570,7 +507,7 @@ "h": 21 }, "frame": { - "x": 276, + "x": 308, "y": 0, "w": 28, "h": 21 @@ -591,96 +528,12 @@ "h": 21 }, "frame": { - "x": 304, + "x": 336, "y": 0, "w": 28, "h": 21 } }, - { - "filename": "cracked_pot", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 26, - "h": 20 - }, - "frame": { - "x": 332, - "y": 0, - "w": 26, - "h": 20 - } - }, - { - "filename": "legend_plate", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 25, - "h": 20 - }, - "frame": { - "x": 358, - "y": 0, - "w": 25, - "h": 20 - } - }, - { - "filename": "mystical_rock", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 25, - "h": 23 - }, - "frame": { - "x": 383, - "y": 0, - "w": 25, - "h": 23 - } - }, - { - "filename": "blank_plate", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 24, - "h": 24 - }, - "frame": { - "x": 408, - "y": 0, - "w": 24, - "h": 24 - } - }, { "filename": "exp_charm", "rotated": false, @@ -696,8 +549,8 @@ "h": 31 }, "frame": { - "x": 22, - "y": 86, + "x": 0, + "y": 369, "w": 17, "h": 31 } @@ -717,12 +570,75 @@ "h": 31 }, "frame": { - "x": 22, - "y": 117, + "x": 0, + "y": 400, "w": 17, "h": 31 } }, + { + "filename": "chipped_pot", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 26, + "h": 20 + }, + "frame": { + "x": 364, + "y": 0, + "w": 26, + "h": 20 + } + }, + { + "filename": "cracked_pot", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 26, + "h": 20 + }, + "frame": { + "x": 390, + "y": 0, + "w": 26, + "h": 20 + } + }, + { + "filename": "manaphy_egg", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 19, + "h": 23 + }, + "frame": { + "x": 416, + "y": 0, + "w": 19, + "h": 23 + } + }, { "filename": "super_exp_charm", "rotated": false, @@ -739,7 +655,7 @@ }, "frame": { "x": 22, - "y": 148, + "y": 140, "w": 17, "h": 31 } @@ -760,13 +676,13 @@ }, "frame": { "x": 22, - "y": 179, + "y": 171, "w": 17, "h": 30 } }, { - "filename": "ribbon_gen6", + "filename": "common_ribbon", "rotated": false, "trimmed": true, "sourceSize": { @@ -774,20 +690,20 @@ "h": 32 }, "spriteSourceSize": { - "x": 5, + "x": 7, "y": 2, - "w": 22, + "w": 18, "h": 28 }, "frame": { "x": 22, - "y": 209, - "w": 22, + "y": 201, + "w": 18, "h": 28 } }, { - "filename": "ribbon_gen8", + "filename": "great_ribbon", "rotated": false, "trimmed": true, "sourceSize": { @@ -795,15 +711,78 @@ "h": 32 }, "spriteSourceSize": { - "x": 5, + "x": 7, "y": 2, - "w": 22, + "w": 18, "h": 28 }, "frame": { "x": 22, - "y": 237, - "w": 22, + "y": 229, + "w": 18, + "h": 28 + } + }, + { + "filename": "master_ribbon", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 18, + "h": 28 + }, + "frame": { + "x": 22, + "y": 257, + "w": 18, + "h": 28 + } + }, + { + "filename": "rogue_ribbon", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 18, + "h": 28 + }, + "frame": { + "x": 22, + "y": 285, + "w": 18, + "h": 28 + } + }, + { + "filename": "ultra_ribbon", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 18, + "h": 28 + }, + "frame": { + "x": 22, + "y": 313, + "w": 18, "h": 28 } }, @@ -823,11 +802,53 @@ }, "frame": { "x": 22, - "y": 265, + "y": 341, "w": 22, "h": 25 } }, + { + "filename": "ultranecrozium_z", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 30, + "h": 15 + }, + "frame": { + "x": 122, + "y": 26, + "w": 30, + "h": 15 + } + }, + { + "filename": "adamant_crystal", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 23, + "h": 21 + }, + "frame": { + "x": 152, + "y": 26, + "w": 23, + "h": 21 + } + }, { "filename": "big_root", "rotated": false, @@ -843,12 +864,33 @@ "h": 24 }, "frame": { - "x": 22, - "y": 290, + "x": 175, + "y": 22, "w": 23, "h": 24 } }, + { + "filename": "blank_plate", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 24, + "h": 24 + }, + "frame": { + "x": 198, + "y": 21, + "w": 24, + "h": 24 + } + }, { "filename": "choice_scarf", "rotated": false, @@ -864,8 +906,8 @@ "h": 24 }, "frame": { - "x": 22, - "y": 314, + "x": 222, + "y": 21, "w": 24, "h": 24 } @@ -885,8 +927,8 @@ "h": 24 }, "frame": { - "x": 22, - "y": 338, + "x": 246, + "y": 21, "w": 24, "h": 24 } @@ -906,8 +948,8 @@ "h": 24 }, "frame": { - "x": 22, - "y": 362, + "x": 270, + "y": 21, "w": 24, "h": 24 } @@ -927,8 +969,8 @@ "h": 24 }, "frame": { - "x": 22, - "y": 386, + "x": 294, + "y": 21, "w": 24, "h": 24 } @@ -948,138 +990,12 @@ "h": 24 }, "frame": { - "x": 26, - "y": 410, + "x": 318, + "y": 21, "w": 24, "h": 24 } }, - { - "filename": "ultranecrozium_z", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 30, - "h": 15 - }, - "frame": { - "x": 29, - "y": 55, - "w": 30, - "h": 15 - } - }, - { - "filename": "mega_bracelet", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 20, - "h": 16 - }, - "frame": { - "x": 28, - "y": 70, - "w": 20, - "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, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 16, - "h": 24 - }, - "frame": { - "x": 39, - "y": 86, - "w": 16, - "h": 24 - } - }, - { - "filename": "carbos", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 16, - "h": 24 - }, - "frame": { - "x": 39, - "y": 110, - "w": 16, - "h": 24 - } - }, - { - "filename": "catching_charm", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 21, - "h": 24 - }, - "frame": { - "x": 39, - "y": 134, - "w": 21, - "h": 24 - } - }, { "filename": "flame_plate", "rotated": false, @@ -1095,8 +1011,8 @@ "h": 24 }, "frame": { - "x": 39, - "y": 158, + "x": 342, + "y": 21, "w": 24, "h": 24 } @@ -1116,8 +1032,8 @@ "h": 24 }, "frame": { - "x": 39, - "y": 182, + "x": 366, + "y": 20, "w": 24, "h": 24 } @@ -1137,14 +1053,14 @@ "h": 24 }, "frame": { - "x": 44, - "y": 206, + "x": 390, + "y": 20, "w": 24, "h": 24 } }, { - "filename": "gracidea", + "filename": "catching_charm", "rotated": false, "trimmed": true, "sourceSize": { @@ -1152,20 +1068,20 @@ "h": 32 }, "spriteSourceSize": { - "x": 4, + "x": 5, "y": 4, - "w": 24, + "w": 21, "h": 24 }, "frame": { - "x": 44, - "y": 230, - "w": 24, + "x": 414, + "y": 23, + "w": 21, "h": 24 } }, { - "filename": "grip_claw", + "filename": "calcium", "rotated": false, "trimmed": true, "sourceSize": { @@ -1173,20 +1089,20 @@ "h": 32 }, "spriteSourceSize": { - "x": 4, + "x": 8, "y": 4, - "w": 24, + "w": 16, "h": 24 }, "frame": { - "x": 44, - "y": 254, - "w": 24, + "x": 17, + "y": 369, + "w": 16, "h": 24 } }, { - "filename": "icicle_plate", + "filename": "carbos", "rotated": false, "trimmed": true, "sourceSize": { @@ -1194,20 +1110,20 @@ "h": 32 }, "spriteSourceSize": { - "x": 4, + "x": 8, "y": 4, - "w": 24, + "w": 16, "h": 24 }, "frame": { - "x": 45, - "y": 278, - "w": 24, + "x": 17, + "y": 393, + "w": 16, "h": 24 } }, { - "filename": "insect_plate", + "filename": "choice_specs", "rotated": false, "trimmed": true, "sourceSize": { @@ -1216,99 +1132,15 @@ }, "spriteSourceSize": { "x": 4, - "y": 4, + "y": 8, "w": 24, - "h": 24 + "h": 18 }, "frame": { - "x": 46, - "y": 302, + "x": 17, + "y": 417, "w": 24, - "h": 24 - } - }, - { - "filename": "iron_plate", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 24, - "h": 24 - }, - "frame": { - "x": 46, - "y": 326, - "w": 24, - "h": 24 - } - }, - { - "filename": "lucky_punch", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 24, - "h": 24 - }, - "frame": { - "x": 46, - "y": 350, - "w": 24, - "h": 24 - } - }, - { - "filename": "lucky_punch_great", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 24, - "h": 24 - }, - "frame": { - "x": 46, - "y": 374, - "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": 48, - "y": 71, - "w": 24, - "h": 15 + "h": 18 } }, { @@ -1326,8 +1158,8 @@ "h": 24 }, "frame": { - "x": 55, - "y": 86, + "x": 33, + "y": 366, "w": 18, "h": 24 } @@ -1347,12 +1179,33 @@ "h": 24 }, "frame": { - "x": 55, - "y": 110, + "x": 33, + "y": 390, "w": 18, "h": 24 } }, + { + "filename": "golden_net", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 24, + "h": 21 + }, + "frame": { + "x": 41, + "y": 414, + "w": 24, + "h": 21 + } + }, { "filename": "full_restore", "rotated": false, @@ -1368,12 +1221,327 @@ "h": 24 }, "frame": { - "x": 60, - "y": 134, + "x": 29, + "y": 29, "w": 18, "h": 24 } }, + { + "filename": "gracidea", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 24, + "h": 24 + }, + "frame": { + "x": 29, + "y": 53, + "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": 29, + "y": 77, + "w": 24, + "h": 24 + } + }, + { + "filename": "lure", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 17, + "h": 24 + }, + "frame": { + "x": 47, + "y": 27, + "w": 17, + "h": 24 + } + }, + { + "filename": "mystical_rock", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 25, + "h": 23 + }, + "frame": { + "x": 64, + "y": 28, + "w": 25, + "h": 23 + } + }, + { + "filename": "clefairy_doll", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 24, + "h": 23 + }, + "frame": { + "x": 89, + "y": 28, + "w": 24, + "h": 23 + } + }, + { + "filename": "icicle_plate", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 24, + "h": 24 + }, + "frame": { + "x": 53, + "y": 51, + "w": 24, + "h": 24 + } + }, + { + "filename": "insect_plate", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 24, + "h": 24 + }, + "frame": { + "x": 53, + "y": 75, + "w": 24, + "h": 24 + } + }, + { + "filename": "iron_plate", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 24, + "h": 24 + }, + "frame": { + "x": 77, + "y": 51, + "w": 24, + "h": 24 + } + }, + { + "filename": "lucky_punch", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 24, + "h": 24 + }, + "frame": { + "x": 77, + "y": 75, + "w": 24, + "h": 24 + } + }, + { + "filename": "ability_capsule", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 9, + "w": 24, + "h": 14 + }, + "frame": { + "x": 29, + "y": 101, + "w": 24, + "h": 14 + } + }, + { + "filename": "lucky_punch_great", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 24, + "h": 24 + }, + "frame": { + "x": 27, + "y": 115, + "w": 24, + "h": 24 + } + }, + { + "filename": "legend_plate", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 25, + "h": 20 + }, + "frame": { + "x": 53, + "y": 99, + "w": 25, + "h": 20 + } + }, + { + "filename": "amulet_coin", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 23, + "h": 21 + }, + "frame": { + "x": 78, + "y": 99, + "w": 23, + "h": 21 + } + }, + { + "filename": "coin_case", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 24, + "h": 23 + }, + "frame": { + "x": 51, + "y": 119, + "w": 24, + "h": 23 + } + }, + { + "filename": "exp_balance", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 24, + "h": 22 + }, + "frame": { + "x": 75, + "y": 120, + "w": 24, + "h": 22 + } + }, { "filename": "hp_up", "rotated": false, @@ -1389,8 +1557,8 @@ "h": 24 }, "frame": { - "x": 63, - "y": 158, + "x": 101, + "y": 51, "w": 16, "h": 24 } @@ -1410,14 +1578,14 @@ "h": 24 }, "frame": { - "x": 63, - "y": 182, + "x": 101, + "y": 75, "w": 16, "h": 24 } }, { - "filename": "kings_rock", + "filename": "auspicious_armor", "rotated": false, "trimmed": true, "sourceSize": { @@ -1425,16 +1593,37 @@ "h": 32 }, "spriteSourceSize": { - "x": 5, - "y": 4, + "x": 4, + "y": 5, "w": 23, - "h": 24 + "h": 21 }, "frame": { - "x": 68, - "y": 206, + "x": 101, + "y": 99, "w": 23, - "h": 24 + "h": 21 + } + }, + { + "filename": "exp_share", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 24, + "h": 22 + }, + "frame": { + "x": 99, + "y": 120, + "w": 24, + "h": 22 } }, { @@ -1452,8 +1641,8 @@ "h": 24 }, "frame": { - "x": 68, - "y": 230, + "x": 39, + "y": 142, "w": 24, "h": 24 } @@ -1473,8 +1662,8 @@ "h": 24 }, "frame": { - "x": 68, - "y": 254, + "x": 39, + "y": 166, "w": 24, "h": 24 } @@ -1494,8 +1683,8 @@ "h": 24 }, "frame": { - "x": 69, - "y": 278, + "x": 63, + "y": 142, "w": 24, "h": 24 } @@ -1515,8 +1704,8 @@ "h": 24 }, "frame": { - "x": 70, - "y": 302, + "x": 87, + "y": 142, "w": 24, "h": 24 } @@ -1536,8 +1725,8 @@ "h": 24 }, "frame": { - "x": 70, - "y": 326, + "x": 63, + "y": 166, "w": 24, "h": 24 } @@ -1557,8 +1746,8 @@ "h": 24 }, "frame": { - "x": 70, - "y": 350, + "x": 87, + "y": 166, "w": 24, "h": 24 } @@ -1578,8 +1767,8 @@ "h": 24 }, "frame": { - "x": 70, - "y": 374, + "x": 40, + "y": 190, "w": 24, "h": 24 } @@ -1599,75 +1788,12 @@ "h": 24 }, "frame": { - "x": 50, - "y": 398, + "x": 40, + "y": 214, "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": 74, - "y": 398, - "w": 22, - "h": 24 - } - }, - { - "filename": "ability_capsule", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 24, - "h": 14 - }, - "frame": { - "x": 137, - "y": 22, - "w": 24, - "h": 14 - } - }, - { - "filename": "lure", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 17, - "h": 24 - }, - "frame": { - "x": 86, - "y": 27, - "w": 17, - "h": 24 - } - }, { "filename": "scanner", "rotated": false, @@ -1683,138 +1809,12 @@ "h": 24 }, "frame": { - "x": 103, - "y": 26, + "x": 64, + "y": 190, "w": 24, "h": 24 } }, - { - "filename": "clefairy_doll", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 24, - "h": 23 - }, - "frame": { - "x": 127, - "y": 36, - "w": 24, - "h": 23 - } - }, - { - "filename": "coin_case", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 24, - "h": 23 - }, - "frame": { - "x": 103, - "y": 50, - "w": 24, - "h": 23 - } - }, - { - "filename": "big_nugget", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 20, - "h": 20 - }, - "frame": { - "x": 83, - "y": 53, - "w": 20, - "h": 20 - } - }, - { - "filename": "dragon_scale", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 24, - "h": 18 - }, - "frame": { - "x": 127, - "y": 59, - "w": 24, - "h": 18 - } - }, - { - "filename": "max_elixir", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 18, - "h": 24 - }, - "frame": { - "x": 151, - "y": 36, - "w": 18, - "h": 24 - } - }, - { - "filename": "adamant_crystal", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 23, - "h": 21 - }, - "frame": { - "x": 151, - "y": 60, - "w": 23, - "h": 21 - } - }, { "filename": "silk_scarf", "rotated": false, @@ -1830,8 +1830,8 @@ "h": 24 }, "frame": { - "x": 169, - "y": 21, + "x": 40, + "y": 238, "w": 24, "h": 24 } @@ -1851,8 +1851,8 @@ "h": 24 }, "frame": { - "x": 193, - "y": 21, + "x": 64, + "y": 214, "w": 24, "h": 24 } @@ -1872,8 +1872,8 @@ "h": 24 }, "frame": { - "x": 217, - "y": 21, + "x": 40, + "y": 262, "w": 24, "h": 24 } @@ -1893,8 +1893,8 @@ "h": 24 }, "frame": { - "x": 241, - "y": 21, + "x": 64, + "y": 238, "w": 24, "h": 24 } @@ -1914,8 +1914,8 @@ "h": 24 }, "frame": { - "x": 265, - "y": 21, + "x": 40, + "y": 286, "w": 24, "h": 24 } @@ -1935,33 +1935,12 @@ "h": 24 }, "frame": { - "x": 289, - "y": 21, + "x": 64, + "y": 262, "w": 24, "h": 24 } }, - { - "filename": "oval_charm", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 21, - "h": 24 - }, - "frame": { - "x": 313, - "y": 21, - "w": 21, - "h": 24 - } - }, { "filename": "toxic_plate", "rotated": false, @@ -1977,8 +1956,8 @@ "h": 24 }, "frame": { - "x": 334, - "y": 20, + "x": 40, + "y": 310, "w": 24, "h": 24 } @@ -1998,75 +1977,12 @@ "h": 24 }, "frame": { - "x": 358, - "y": 20, + "x": 64, + "y": 286, "w": 24, "h": 24 } }, - { - "filename": "exp_balance", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 24, - "h": 22 - }, - "frame": { - "x": 382, - "y": 23, - "w": 24, - "h": 22 - } - }, - { - "filename": "exp_share", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 24, - "h": 22 - }, - "frame": { - "x": 406, - "y": 24, - "w": 24, - "h": 22 - } - }, - { - "filename": "candy_overlay", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 12, - "w": 16, - "h": 15 - }, - "frame": { - "x": 169, - "y": 45, - "w": 16, - "h": 15 - } - }, { "filename": "expert_belt", "rotated": false, @@ -2082,12 +1998,117 @@ "h": 23 }, "frame": { - "x": 185, - "y": 45, + "x": 64, + "y": 310, "w": 24, "h": 23 } }, + { + "filename": "kings_rock", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 23, + "h": 24 + }, + "frame": { + "x": 88, + "y": 190, + "w": 23, + "h": 24 + } + }, + { + "filename": "reveal_glass", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 23, + "h": 24 + }, + "frame": { + "x": 88, + "y": 214, + "w": 23, + "h": 24 + } + }, + { + "filename": "berry_pouch", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 23, + "h": 23 + }, + "frame": { + "x": 88, + "y": 238, + "w": 23, + "h": 23 + } + }, + { + "filename": "dynamax_band", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 23, + "h": 23 + }, + "frame": { + "x": 88, + "y": 261, + "w": 23, + "h": 23 + } + }, + { + "filename": "griseous_core", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 23, + "h": 23 + }, + "frame": { + "x": 88, + "y": 284, + "w": 23, + "h": 23 + } + }, { "filename": "hearthflame_mask", "rotated": false, @@ -2103,12 +2124,54 @@ "h": 23 }, "frame": { - "x": 209, - "y": 45, + "x": 88, + "y": 307, "w": 24, "h": 23 } }, + { + "filename": "max_revive", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 22, + "h": 24 + }, + "frame": { + "x": 44, + "y": 334, + "w": 22, + "h": 24 + } + }, + { + "filename": "black_belt", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 66, + "y": 333, + "w": 22, + "h": 23 + } + }, { "filename": "leppa_berry", "rotated": false, @@ -2124,12 +2187,201 @@ "h": 23 }, "frame": { - "x": 233, - "y": 45, + "x": 88, + "y": 330, "w": 24, "h": 23 } }, + { + "filename": "max_elixir", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 4, + "w": 18, + "h": 24 + }, + "frame": { + "x": 111, + "y": 142, + "w": 18, + "h": 24 + } + }, + { + "filename": "max_ether", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 4, + "w": 18, + "h": 24 + }, + "frame": { + "x": 111, + "y": 166, + "w": 18, + "h": 24 + } + }, + { + "filename": "max_potion", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 4, + "w": 18, + "h": 24 + }, + "frame": { + "x": 111, + "y": 190, + "w": 18, + "h": 24 + } + }, + { + "filename": "oval_charm", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 21, + "h": 24 + }, + "frame": { + "x": 111, + "y": 214, + "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": 111, + "y": 238, + "w": 21, + "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": 111, + "y": 262, + "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": 111, + "y": 285, + "w": 22, + "h": 22 + } + }, + { + "filename": "dark_tera_shard", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 112, + "y": 307, + "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": 112, + "y": 330, + "w": 22, + "h": 23 + } + }, { "filename": "scope_lens", "rotated": false, @@ -2145,8 +2397,8 @@ "h": 23 }, "frame": { - "x": 257, - "y": 45, + "x": 117, + "y": 41, "w": 24, "h": 23 } @@ -2166,14 +2418,14 @@ "h": 23 }, "frame": { - "x": 281, - "y": 45, + "x": 117, + "y": 64, "w": 24, "h": 23 } }, { - "filename": "berry_pouch", + "filename": "leek", "rotated": false, "trimmed": true, "sourceSize": { @@ -2187,14 +2439,14 @@ "h": 23 }, "frame": { - "x": 305, - "y": 45, + "x": 141, + "y": 47, "w": 23, "h": 23 } }, { - "filename": "black_belt", + "filename": "binding_band", "rotated": false, "trimmed": true, "sourceSize": { @@ -2203,19 +2455,61 @@ }, "spriteSourceSize": { "x": 5, - "y": 4, - "w": 22, - "h": 23 + "y": 6, + "w": 23, + "h": 20 }, "frame": { - "x": 328, - "y": 45, - "w": 22, - "h": 23 + "x": 141, + "y": 70, + "w": 23, + "h": 20 } }, { - "filename": "reveal_glass", + "filename": "max_lure", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 17, + "h": 24 + }, + "frame": { + "x": 164, + "y": 47, + "w": 17, + "h": 24 + } + }, + { + "filename": "red_orb", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 20, + "h": 24 + }, + "frame": { + "x": 181, + "y": 46, + "w": 20, + "h": 24 + } + }, + { + "filename": "macho_brace", "rotated": false, "trimmed": true, "sourceSize": { @@ -2224,33 +2518,12 @@ }, "spriteSourceSize": { "x": 4, - "y": 4, - "w": 23, - "h": 24 - }, - "frame": { - "x": 350, - "y": 44, - "w": 23, - "h": 24 - } - }, - { - "filename": "dynamax_band", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, + "y": 5, "w": 23, "h": 23 }, "frame": { - "x": 373, + "x": 201, "y": 45, "w": 23, "h": 23 @@ -2271,98 +2544,14 @@ "h": 22 }, "frame": { - "x": 396, - "y": 46, + "x": 224, + "y": 45, "w": 24, "h": 22 } }, { - "filename": "revive", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 10, - "y": 8, - "w": 12, - "h": 17 - }, - "frame": { - "x": 420, - "y": 46, - "w": 12, - "h": 17 - } - }, - { - "filename": "golden_net", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 24, - "h": 21 - }, - "frame": { - "x": 174, - "y": 68, - "w": 24, - "h": 21 - } - }, - { - "filename": "amulet_coin", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 23, - "h": 21 - }, - "frame": { - "x": 198, - "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": 221, - "y": 68, - "w": 23, - "h": 21 - } - }, - { - "filename": "griseous_core", + "filename": "healing_charm", "rotated": false, "trimmed": true, "sourceSize": { @@ -2373,55 +2562,13 @@ "x": 5, "y": 5, "w": 23, - "h": 23 + "h": 22 }, "frame": { - "x": 244, - "y": 68, + "x": 248, + "y": 45, "w": 23, - "h": 23 - } - }, - { - "filename": "leek", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 23, - "h": 23 - }, - "frame": { - "x": 267, - "y": 68, - "w": 23, - "h": 23 - } - }, - { - "filename": "macho_brace", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 23, - "h": 23 - }, - "frame": { - "x": 290, - "y": 68, - "w": 23, - "h": 23 + "h": 22 } }, { @@ -2439,8 +2586,8 @@ "h": 23 }, "frame": { - "x": 313, - "y": 68, + "x": 271, + "y": 45, "w": 23, "h": 23 } @@ -2460,285 +2607,12 @@ "h": 23 }, "frame": { - "x": 336, - "y": 68, + "x": 294, + "y": 45, "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": 359, - "y": 68, - "w": 22, - "h": 23 - } - }, - { - "filename": "dark_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 381, - "y": 68, - "w": 22, - "h": 23 - } - }, - { - "filename": "dragon_fang", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 21, - "h": 23 - }, - "frame": { - "x": 403, - "y": 68, - "w": 21, - "h": 23 - } - }, - { - "filename": "relic_gold", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 9, - "y": 11, - "w": 15, - "h": 11 - }, - "frame": { - "x": 50, - "y": 422, - "w": 15, - "h": 11 - } - }, - { - "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": 91, - "y": 73, - "w": 24, - "h": 20 - } - }, - { - "filename": "max_ether", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 18, - "h": 24 - }, - "frame": { - "x": 73, - "y": 73, - "w": 18, - "h": 24 - } - }, - { - "filename": "max_potion", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 18, - "h": 24 - }, - "frame": { - "x": 73, - "y": 97, - "w": 18, - "h": 24 - } - }, - { - "filename": "dragon_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 91, - "y": 93, - "w": 22, - "h": 23 - } - }, - { - "filename": "metal_powder", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 24, - "h": 20 - }, - "frame": { - "x": 115, - "y": 77, - "w": 24, - "h": 20 - } - }, - { - "filename": "quick_powder", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 24, - "h": 20 - }, - "frame": { - "x": 113, - "y": 97, - "w": 24, - "h": 20 - } - }, - { - "filename": "berry_juice_bad", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 21 - }, - "frame": { - "x": 91, - "y": 116, - "w": 22, - "h": 21 - } - }, - { - "filename": "rusted_shield", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 24, - "h": 20 - }, - "frame": { - "x": 113, - "y": 117, - "w": 24, - "h": 20 - } - }, - { - "filename": "moon_stone", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 23, - "h": 21 - }, - "frame": { - "x": 78, - "y": 137, - "w": 23, - "h": 21 - } - }, { "filename": "electric_tera_shard", "rotated": false, @@ -2754,8 +2628,8 @@ "h": 23 }, "frame": { - "x": 79, - "y": 158, + "x": 317, + "y": 45, "w": 22, "h": 23 } @@ -2775,12 +2649,75 @@ "h": 23 }, "frame": { - "x": 101, - "y": 137, + "x": 339, + "y": 45, "w": 22, "h": 23 } }, + { + "filename": "apicot_berry", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 19, + "h": 20 + }, + "frame": { + "x": 164, + "y": 71, + "w": 19, + "h": 20 + } + }, + { + "filename": "berry_juice_bad", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 21 + }, + "frame": { + "x": 183, + "y": 70, + "w": 22, + "h": 21 + } + }, + { + "filename": "dragon_fang", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 21, + "h": 23 + }, + "frame": { + "x": 205, + "y": 68, + "w": 21, + "h": 23 + } + }, { "filename": "fighting_tera_shard", "rotated": false, @@ -2796,470 +2733,8 @@ "h": 23 }, "frame": { - "x": 79, - "y": 181, - "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": 101, - "y": 160, - "w": 22, - "h": 23 - } - }, - { - "filename": "berry_juice_good", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 21 - }, - "frame": { - "x": 101, - "y": 183, - "w": 22, - "h": 21 - } - }, - { - "filename": "fire_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 91, - "y": 204, - "w": 22, - "h": 23 - } - }, - { - "filename": "shiny_charm", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 21, - "h": 24 - }, - "frame": { - "x": 92, - "y": 227, - "w": 21, - "h": 24 - } - }, - { - "filename": "focus_sash", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 92, - "y": 251, - "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": 93, - "y": 274, - "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": 94, - "y": 297, - "w": 22, - "h": 23 - } - }, - { - "filename": "ground_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 94, - "y": 320, - "w": 22, - "h": 23 - } - }, - { - "filename": "ice_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 94, - "y": 343, - "w": 22, - "h": 23 - } - }, - { - "filename": "never_melt_ice", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 23 - }, - "frame": { - "x": 94, - "y": 366, - "w": 22, - "h": 23 - } - }, - { - "filename": "max_lure", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 17, - "h": 24 - }, - "frame": { - "x": 123, - "y": 137, - "w": 17, - "h": 24 - } - }, - { - "filename": "red_orb", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 20, - "h": 24 - }, - "frame": { - "x": 123, - "y": 161, - "w": 20, - "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": 123, - "y": 185, - "w": 23, - "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": 113, - "y": 205, - "w": 23, - "h": 22 - } - }, - { - "filename": "normal_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 113, - "y": 227, - "w": 22, - "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": 114, - "y": 250, - "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": 115, - "y": 273, - "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": 296, - "w": 20, - "h": 23 - } - }, - { - "filename": "petaya_berry", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 23 - }, - "frame": { - "x": 116, - "y": 319, - "w": 22, - "h": 23 - } - }, - { - "filename": "poison_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 116, - "y": 342, - "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": 365, - "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": 96, - "y": 389, + "x": 226, + "y": 67, "w": 22, "h": 23 } @@ -3279,14 +2754,14 @@ "h": 22 }, "frame": { - "x": 96, - "y": 412, + "x": 248, + "y": 67, "w": 23, "h": 22 } }, { - "filename": "rock_tera_shard", + "filename": "icy_reins_of_unity", "rotated": false, "trimmed": true, "sourceSize": { @@ -3294,20 +2769,104 @@ "h": 32 }, "spriteSourceSize": { - "x": 6, - "y": 4, + "x": 4, + "y": 7, + "w": 24, + "h": 20 + }, + "frame": { + "x": 271, + "y": 68, + "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": 295, + "y": 68, + "w": 24, + "h": 20 + } + }, + { + "filename": "quick_powder", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 24, + "h": 20 + }, + "frame": { + "x": 319, + "y": 68, + "w": 24, + "h": 20 + } + }, + { + "filename": "berry_juice_good", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 21 + }, + "frame": { + "x": 343, + "y": 68, + "w": 22, + "h": 21 + } + }, + { + "filename": "fire_stone", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, "w": 22, "h": 23 }, "frame": { - "x": 118, - "y": 388, + "x": 361, + "y": 45, "w": 22, "h": 23 } }, { - "filename": "steel_tera_shard", + "filename": "fire_tera_shard", "rotated": false, "trimmed": true, "sourceSize": { @@ -3321,8 +2880,8 @@ "h": 23 }, "frame": { - "x": 119, - "y": 411, + "x": 383, + "y": 44, "w": 22, "h": 23 } @@ -3342,35 +2901,14 @@ "h": 22 }, "frame": { - "x": 136, - "y": 205, + "x": 365, + "y": 68, "w": 18, "h": 22 } }, { - "filename": "sharp_beak", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 21, - "h": 23 - }, - "frame": { - "x": 135, - "y": 227, - "w": 21, - "h": 23 - } - }, - { - "filename": "stellar_tera_shard", + "filename": "flying_tera_shard", "rotated": false, "trimmed": true, "sourceSize": { @@ -3384,35 +2922,14 @@ "h": 23 }, "frame": { - "x": 135, - "y": 250, + "x": 383, + "y": 67, "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": 136, - "y": 273, - "w": 22, - "h": 23 - } - }, - { - "filename": "wide_lens", + "filename": "focus_sash", "rotated": false, "trimmed": true, "sourceSize": { @@ -3426,54 +2943,12 @@ "h": 23 }, "frame": { - "x": 136, - "y": 296, + "x": 405, + "y": 47, "w": 22, "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": 138, - "y": 319, - "w": 21, - "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": 138, - "y": 342, - "w": 22, - "h": 22 - } - }, { "filename": "charcoal", "rotated": false, @@ -3489,96 +2964,12 @@ "h": 22 }, "frame": { - "x": 138, - "y": 364, + "x": 405, + "y": 70, "w": 22, "h": 22 } }, - { - "filename": "dark_memory", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 140, - "y": 386, - "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": 141, - "y": 408, - "w": 22, - "h": 22 - } - }, - { - "filename": "blue_orb", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 20, - "h": 20 - }, - "frame": { - "x": 154, - "y": 81, - "w": 20, - "h": 20 - } - }, - { - "filename": "full_heal", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 15, - "h": 23 - }, - "frame": { - "x": 139, - "y": 81, - "w": 15, - "h": 23 - } - }, { "filename": "super_lure", "rotated": false, @@ -3594,14 +2985,14 @@ "h": 24 }, "frame": { - "x": 137, - "y": 104, + "x": 124, + "y": 87, "w": 17, "h": 24 } }, { - "filename": "dna_splicers", + "filename": "moon_stone", "rotated": false, "trimmed": true, "sourceSize": { @@ -3609,20 +3000,20 @@ "h": 32 }, "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 + "x": 4, + "y": 6, + "w": 23, + "h": 21 }, "frame": { - "x": 154, - "y": 101, - "w": 22, - "h": 22 + "x": 141, + "y": 90, + "w": 23, + "h": 21 } }, { - "filename": "dragon_memory", + "filename": "rusted_shield", "rotated": false, "trimmed": true, "sourceSize": { @@ -3630,37 +3021,16 @@ "h": 32 }, "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 + "x": 4, + "y": 6, + "w": 24, + "h": 20 }, "frame": { - "x": 176, - "y": 89, - "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": 198, - "y": 89, - "w": 22, - "h": 22 + "x": 164, + "y": 91, + "w": 24, + "h": 20 } }, { @@ -3678,12 +3048,243 @@ "h": 20 }, "frame": { - "x": 220, - "y": 89, + "x": 188, + "y": 91, "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": 212, + "y": 91, + "w": 20, + "h": 20 + } + }, + { + "filename": "common_egg", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 20, + "h": 22 + }, + "frame": { + "x": 232, + "y": 90, + "w": 20, + "h": 22 + } + }, + { + "filename": "ghost_tera_shard", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 252, + "y": 89, + "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": 274, + "y": 88, + "w": 22, + "h": 23 + } + }, + { + "filename": "ground_tera_shard", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 296, + "y": 88, + "w": 22, + "h": 23 + } + }, + { + "filename": "ice_tera_shard", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 318, + "y": 88, + "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": 340, + "y": 89, + "w": 22, + "h": 22 + } + }, + { + "filename": "n_lunarizer", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 23, + "h": 21 + }, + "frame": { + "x": 362, + "y": 90, + "w": 23, + "h": 21 + } + }, + { + "filename": "dawn_stone", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 20, + "h": 21 + }, + "frame": { + "x": 385, + "y": 90, + "w": 20, + "h": 21 + } + }, + { + "filename": "black_sludge", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 22, + "h": 19 + }, + "frame": { + "x": 405, + "y": 92, + "w": 22, + "h": 19 + } + }, + { + "filename": "dragon_scale", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 8, + "w": 24, + "h": 18 + }, + "frame": { + "x": 124, + "y": 111, + "w": 24, + "h": 18 + } + }, { "filename": "shadow_reins_of_unity", "rotated": false, @@ -3699,8 +3300,8 @@ "h": 20 }, "frame": { - "x": 244, - "y": 91, + "x": 148, + "y": 111, "w": 24, "h": 20 } @@ -3720,33 +3321,12 @@ "h": 20 }, "frame": { - "x": 268, - "y": 91, + "x": 172, + "y": 111, "w": 24, "h": 20 } }, - { - "filename": "n_lunarizer", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 23, - "h": 21 - }, - "frame": { - "x": 292, - "y": 91, - "w": 23, - "h": 21 - } - }, { "filename": "n_solarizer", "rotated": false, @@ -3762,119 +3342,35 @@ "h": 21 }, "frame": { - "x": 315, - "y": 91, - "w": 23, - "h": 21 - } - }, - { - "filename": "wellspring_mask", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 23, - "h": 21 - }, - "frame": { - "x": 338, - "y": 91, - "w": 23, - "h": 21 - } - }, - { - "filename": "deep_sea_tooth", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 22, - "h": 21 - }, - "frame": { - "x": 361, - "y": 91, - "w": 22, - "h": 21 - } - }, - { - "filename": "electric_memory", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 383, - "y": 91, - "w": 22, - "h": 22 - } - }, - { - "filename": "enigma_berry", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 405, - "y": 91, - "w": 22, - "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": 176, + "x": 196, "y": 111, "w": 23, - "h": 17 + "h": 21 } }, { - "filename": "black_sludge", + "filename": "max_repel", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 16, + "h": 24 + }, + "frame": { + "x": 51, + "y": 358, + "w": 16, + "h": 24 + } + }, + { + "filename": "lansat_berry", "rotated": false, "trimmed": true, "sourceSize": { @@ -3883,15 +3379,162 @@ }, "spriteSourceSize": { "x": 5, - "y": 7, - "w": 22, - "h": 19 + "y": 4, + "w": 21, + "h": 23 }, "frame": { - "x": 199, - "y": 111, + "x": 67, + "y": 356, + "w": 21, + "h": 23 + } + }, + { + "filename": "never_melt_ice", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, "w": 22, - "h": 19 + "h": 23 + }, + "frame": { + "x": 88, + "y": 353, + "w": 22, + "h": 23 + } + }, + { + "filename": "normal_tera_shard", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 110, + "y": 353, + "w": 22, + "h": 23 + } + }, + { + "filename": "pp_max", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 16, + "h": 24 + }, + "frame": { + "x": 51, + "y": 382, + "w": 16, + "h": 24 + } + }, + { + "filename": "leaf_stone", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 21, + "h": 23 + }, + "frame": { + "x": 67, + "y": 379, + "w": 21, + "h": 23 + } + }, + { + "filename": "petaya_berry", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 23 + }, + "frame": { + "x": 88, + "y": 376, + "w": 22, + "h": 23 + } + }, + { + "filename": "poison_tera_shard", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 110, + "y": 376, + "w": 22, + "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": 129, + "y": 129, + "w": 19, + "h": 22 } }, { @@ -3909,14 +3552,14 @@ "h": 20 }, "frame": { - "x": 221, - "y": 109, + "x": 148, + "y": 131, "w": 23, "h": 20 } }, { - "filename": "coupon", + "filename": "psychic_tera_shard", "rotated": false, "trimmed": true, "sourceSize": { @@ -3924,83 +3567,20 @@ "h": 32 }, "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 23, - "h": 19 + "x": 6, + "y": 4, + "w": 22, + "h": 23 }, "frame": { - "x": 244, - "y": 111, - "w": 23, - "h": 19 + "x": 129, + "y": 151, + "w": 22, + "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": 267, - "y": 111, - "w": 23, - "h": 19 - } - }, - { - "filename": "mystic_ticket", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 23, - "h": 19 - }, - "frame": { - "x": 290, - "y": 112, - "w": 23, - "h": 19 - } - }, - { - "filename": "pair_of_tickets", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 23, - "h": 19 - }, - "frame": { - "x": 313, - "y": 112, - "w": 23, - "h": 19 - } - }, - { - "filename": "shell_bell", + "filename": "reaper_cloth", "rotated": false, "trimmed": true, "sourceSize": { @@ -4009,15 +3589,99 @@ }, "spriteSourceSize": { "x": 5, - "y": 7, - "w": 23, - "h": 20 + "y": 5, + "w": 22, + "h": 23 }, "frame": { - "x": 336, - "y": 112, + "x": 129, + "y": 174, + "w": 22, + "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": 151, + "y": 151, + "w": 20, + "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": 171, + "y": 131, + "w": 22, + "h": 23 + } + }, + { + "filename": "sharp_beak", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 21, + "h": 23 + }, + "frame": { + "x": 151, + "y": 174, + "w": 21, + "h": 23 + } + }, + { + "filename": "black_glasses", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 8, "w": 23, - "h": 20 + "h": 17 + }, + "frame": { + "x": 129, + "y": 197, + "w": 23, + "h": 17 } }, { @@ -4035,14 +3699,14 @@ "h": 20 }, "frame": { - "x": 359, - "y": 112, + "x": 171, + "y": 154, "w": 22, "h": 20 } }, { - "filename": "blunder_policy", + "filename": "steel_tera_shard", "rotated": false, "trimmed": true, "sourceSize": { @@ -4050,20 +3714,20 @@ "h": 32 }, "spriteSourceSize": { - "x": 5, - "y": 6, + "x": 6, + "y": 4, "w": 22, - "h": 19 + "h": 23 }, "frame": { - "x": 381, - "y": 113, + "x": 172, + "y": 174, "w": 22, - "h": 19 + "h": 23 } }, { - "filename": "dubious_disc", + "filename": "stellar_tera_shard", "rotated": false, "trimmed": true, "sourceSize": { @@ -4071,20 +3735,20 @@ "h": 32 }, "spriteSourceSize": { - "x": 5, - "y": 7, + "x": 6, + "y": 4, "w": 22, - "h": 19 + "h": 23 }, "frame": { - "x": 403, - "y": 113, + "x": 132, + "y": 214, "w": 22, - "h": 19 + "h": 23 } }, { - "filename": "fairy_feather", + "filename": "water_tera_shard", "rotated": false, "trimmed": true, "sourceSize": { @@ -4092,16 +3756,16 @@ "h": 32 }, "spriteSourceSize": { - "x": 5, - "y": 7, + "x": 6, + "y": 4, "w": 22, - "h": 20 + "h": 23 }, "frame": { - "x": 154, - "y": 123, + "x": 132, + "y": 237, "w": 22, - "h": 20 + "h": 23 } }, { @@ -4119,14 +3783,14 @@ "h": 17 }, "frame": { - "x": 176, - "y": 128, + "x": 152, + "y": 197, "w": 23, "h": 17 } }, { - "filename": "chill_drive", + "filename": "whipped_dream", "rotated": false, "trimmed": true, "sourceSize": { @@ -4134,16 +3798,205 @@ "h": 32 }, "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 23, - "h": 17 + "x": 5, + "y": 4, + "w": 21, + "h": 23 }, "frame": { - "x": 199, - "y": 130, - "w": 23, - "h": 17 + "x": 154, + "y": 214, + "w": 21, + "h": 23 + } + }, + { + "filename": "wide_lens", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 154, + "y": 237, + "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": 133, + "y": 260, + "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": 133, + "y": 282, + "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": 155, + "y": 260, + "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": 155, + "y": 282, + "w": 22, + "h": 22 + } + }, + { + "filename": "electric_memory", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 22 + }, + "frame": { + "x": 193, + "y": 132, + "w": 22, + "h": 22 + } + }, + { + "filename": "fairy_feather", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 22, + "h": 20 + }, + "frame": { + "x": 193, + "y": 154, + "w": 22, + "h": 20 + } + }, + { + "filename": "enigma_berry", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 22 + }, + "frame": { + "x": 194, + "y": 174, + "w": 22, + "h": 22 + } + }, + { + "filename": "epic_egg", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 20, + "h": 22 + }, + "frame": { + "x": 175, + "y": 197, + "w": 20, + "h": 22 } }, { @@ -4161,8 +4014,8 @@ "h": 22 }, "frame": { - "x": 222, - "y": 129, + "x": 195, + "y": 196, "w": 22, "h": 22 } @@ -4182,8 +4035,8 @@ "h": 22 }, "frame": { - "x": 244, - "y": 130, + "x": 134, + "y": 304, "w": 22, "h": 22 } @@ -4203,8 +4056,8 @@ "h": 22 }, "frame": { - "x": 266, - "y": 130, + "x": 134, + "y": 326, "w": 22, "h": 22 } @@ -4224,8 +4077,8 @@ "h": 22 }, "frame": { - "x": 288, - "y": 131, + "x": 156, + "y": 304, "w": 22, "h": 22 } @@ -4245,12 +4098,33 @@ "h": 22 }, "frame": { - "x": 310, - "y": 131, + "x": 156, + "y": 326, "w": 22, "h": 22 } }, + { + "filename": "masterpiece_teacup", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 21, + "h": 18 + }, + "frame": { + "x": 175, + "y": 219, + "w": 21, + "h": 18 + } + }, { "filename": "ghost_memory", "rotated": false, @@ -4266,8 +4140,8 @@ "h": 22 }, "frame": { - "x": 332, - "y": 132, + "x": 176, + "y": 237, "w": 22, "h": 22 } @@ -4287,8 +4161,8 @@ "h": 22 }, "frame": { - "x": 354, - "y": 132, + "x": 177, + "y": 259, "w": 22, "h": 22 } @@ -4308,8 +4182,8 @@ "h": 22 }, "frame": { - "x": 376, - "y": 132, + "x": 177, + "y": 281, "w": 22, "h": 22 } @@ -4329,159 +4203,12 @@ "h": 22 }, "frame": { - "x": 398, - "y": 132, + "x": 178, + "y": 303, "w": 22, "h": 22 } }, - { - "filename": "relic_crown", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 23, - "h": 18 - }, - "frame": { - "x": 140, - "y": 143, - "w": 23, - "h": 18 - } - }, - { - "filename": "max_repel", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 16, - "h": 24 - }, - "frame": { - "x": 143, - "y": 161, - "w": 16, - "h": 24 - } - }, - { - "filename": "apicot_berry", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 19, - "h": 20 - }, - "frame": { - "x": 146, - "y": 185, - "w": 19, - "h": 20 - } - }, - { - "filename": "hard_meteorite", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 20, - "h": 22 - }, - "frame": { - "x": 154, - "y": 205, - "w": 20, - "h": 22 - } - }, - { - "filename": "sachet", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 18, - "h": 23 - }, - "frame": { - "x": 156, - "y": 227, - "w": 18, - "h": 23 - } - }, - { - "filename": "hyper_potion", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 17, - "h": 23 - }, - "frame": { - "x": 157, - "y": 250, - "w": 17, - "h": 23 - } - }, - { - "filename": "pp_max", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 16, - "h": 24 - }, - "frame": { - "x": 158, - "y": 273, - "w": 16, - "h": 24 - } - }, { "filename": "ice_memory", "rotated": false, @@ -4497,12 +4224,54 @@ "h": 22 }, "frame": { - "x": 158, - "y": 297, + "x": 178, + "y": 325, "w": 22, "h": 22 } }, + { + "filename": "blunder_policy", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 22, + "h": 19 + }, + "frame": { + "x": 196, + "y": 218, + "w": 22, + "h": 19 + } + }, + { + "filename": "hard_meteorite", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 5, + "w": 20, + "h": 22 + }, + "frame": { + "x": 198, + "y": 237, + "w": 20, + "h": 22 + } + }, { "filename": "ice_stone", "rotated": false, @@ -4518,8 +4287,8 @@ "h": 22 }, "frame": { - "x": 159, - "y": 319, + "x": 199, + "y": 259, "w": 22, "h": 22 } @@ -4539,8 +4308,8 @@ "h": 22 }, "frame": { - "x": 160, - "y": 341, + "x": 199, + "y": 281, "w": 22, "h": 22 } @@ -4560,8 +4329,8 @@ "h": 22 }, "frame": { - "x": 160, - "y": 363, + "x": 200, + "y": 303, "w": 22, "h": 22 } @@ -4581,12 +4350,33 @@ "h": 22 }, "frame": { - "x": 162, - "y": 385, + "x": 200, + "y": 325, "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": 219, + "y": 112, + "w": 23, + "h": 20 + } + }, { "filename": "normal_memory", "rotated": false, @@ -4602,14 +4392,14 @@ "h": 22 }, "frame": { - "x": 163, - "y": 407, + "x": 215, + "y": 132, "w": 22, "h": 22 } }, { - "filename": "pp_up", + "filename": "malicious_armor", "rotated": false, "trimmed": true, "sourceSize": { @@ -4617,186 +4407,18 @@ "h": 32 }, "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 16, - "h": 24 - }, - "frame": { - "x": 159, - "y": 161, - "w": 16, - "h": 24 - } - }, - { - "filename": "candy_jar", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, + "x": 5, "y": 6, - "w": 19, + "w": 22, "h": 20 }, "frame": { - "x": 165, - "y": 185, - "w": 19, + "x": 215, + "y": 154, + "w": 22, "h": 20 } }, - { - "filename": "protein", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 16, - "h": 24 - }, - "frame": { - "x": 174, - "y": 205, - "w": 16, - "h": 24 - } - }, - { - "filename": "repel", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 16, - "h": 24 - }, - "frame": { - "x": 174, - "y": 229, - "w": 16, - "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": 174, - "y": 253, - "w": 16, - "h": 24 - } - }, - { - "filename": "gb", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 20, - "h": 20 - }, - "frame": { - "x": 174, - "y": 277, - "w": 20, - "h": 20 - } - }, - { - "filename": "leftovers", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 15, - "h": 22 - }, - "frame": { - "x": 180, - "y": 297, - "w": 15, - "h": 22 - } - }, - { - "filename": "lock_capsule", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 19, - "h": 22 - }, - "frame": { - "x": 181, - "y": 319, - "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": 182, - "y": 341, - "w": 19, - "h": 22 - } - }, { "filename": "poison_memory", "rotated": false, @@ -4812,8 +4434,8 @@ "h": 22 }, "frame": { - "x": 182, - "y": 363, + "x": 216, + "y": 174, "w": 22, "h": 22 } @@ -4833,8 +4455,8 @@ "h": 22 }, "frame": { - "x": 184, - "y": 385, + "x": 217, + "y": 196, "w": 22, "h": 22 } @@ -4854,77 +4476,14 @@ "h": 22 }, "frame": { - "x": 185, - "y": 407, + "x": 218, + "y": 218, "w": 22, "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": 163, - "y": 145, - "w": 17, - "h": 16 - } - }, - { - "filename": "unknown", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 16, - "h": 24 - }, - "frame": { - "x": 175, - "y": 161, - "w": 16, - "h": 24 - } - }, - { - "filename": "abomasite", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 8, - "w": 16, - "h": 16 - }, - "frame": { - "x": 180, - "y": 145, - "w": 16, - "h": 16 - } - }, - { - "filename": "douse_drive", + "filename": "coupon", "rotated": false, "trimmed": true, "sourceSize": { @@ -4933,19 +4492,19 @@ }, "spriteSourceSize": { "x": 4, - "y": 8, + "y": 7, "w": 23, - "h": 17 + "h": 19 }, "frame": { - "x": 196, - "y": 147, + "x": 218, + "y": 240, "w": 23, - "h": 17 + "h": 19 } }, { - "filename": "liechi_berry", + "filename": "wellspring_mask", "rotated": false, "trimmed": true, "sourceSize": { @@ -4953,20 +4512,20 @@ "h": 32 }, "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 22, + "x": 4, + "y": 5, + "w": 23, "h": 21 }, "frame": { - "x": 191, - "y": 164, - "w": 22, + "x": 242, + "y": 112, + "w": 23, "h": 21 } }, { - "filename": "malicious_armor", + "filename": "legendary_egg", "rotated": false, "trimmed": true, "sourceSize": { @@ -4974,99 +4533,57 @@ "h": 32 }, "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 22, - "h": 20 - }, - "frame": { - "x": 184, - "y": 185, - "w": 22, - "h": 20 - } - }, - { - "filename": "zinc", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 16, - "h": 24 - }, - "frame": { - "x": 190, - "y": 205, - "w": 16, - "h": 24 - } - }, - { - "filename": "potion", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, + "x": 6, "y": 5, - "w": 17, - "h": 23 - }, - "frame": { - "x": 190, - "y": 229, - "w": 17, - "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": 190, - "y": 252, - "w": 17, - "h": 23 - } - }, - { - "filename": "metronome", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 17, + "w": 20, "h": 22 }, "frame": { - "x": 194, - "y": 275, - "w": 17, + "x": 221, + "y": 259, + "w": 20, + "h": 22 + } + }, + { + "filename": "rare_egg", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 20, + "h": 22 + }, + "frame": { + "x": 221, + "y": 281, + "w": 20, + "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": 222, + "y": 303, + "w": 19, "h": 22 } }, @@ -5085,8 +4602,8 @@ "h": 22 }, "frame": { - "x": 195, - "y": 297, + "x": 222, + "y": 325, "w": 22, "h": 22 } @@ -5106,12 +4623,33 @@ "h": 22 }, "frame": { - "x": 200, - "y": 319, + "x": 237, + "y": 133, "w": 22, "h": 22 } }, + { + "filename": "dubious_disc", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 22, + "h": 19 + }, + "frame": { + "x": 237, + "y": 155, + "w": 22, + "h": 19 + } + }, { "filename": "scroll_of_waters", "rotated": false, @@ -5127,8 +4665,8 @@ "h": 22 }, "frame": { - "x": 201, - "y": 341, + "x": 238, + "y": 174, "w": 22, "h": 22 } @@ -5148,33 +4686,12 @@ "h": 22 }, "frame": { - "x": 204, - "y": 363, + "x": 239, + "y": 196, "w": 22, "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": 206, - "y": 385, - "w": 20, - "h": 22 - } - }, { "filename": "starf_berry", "rotated": false, @@ -5190,54 +4707,12 @@ "h": 22 }, "frame": { - "x": 207, - "y": 407, + "x": 240, + "y": 218, "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": 219, - "y": 151, - "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": 242, - "y": 152, - "w": 23, - "h": 17 - } - }, { "filename": "steel_memory", "rotated": false, @@ -5253,8 +4728,8 @@ "h": 22 }, "frame": { - "x": 265, - "y": 152, + "x": 241, + "y": 240, "w": 22, "h": 22 } @@ -5274,8 +4749,8 @@ "h": 22 }, "frame": { - "x": 287, - "y": 153, + "x": 241, + "y": 262, "w": 22, "h": 22 } @@ -5295,14 +4770,14 @@ "h": 22 }, "frame": { - "x": 309, - "y": 153, + "x": 241, + "y": 284, "w": 22, "h": 22 } }, { - "filename": "sweet_apple", + "filename": "golden_mystic_ticket", "rotated": false, "trimmed": true, "sourceSize": { @@ -5310,20 +4785,20 @@ "h": 32 }, "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 22, - "h": 21 + "x": 4, + "y": 7, + "w": 23, + "h": 19 }, "frame": { - "x": 331, - "y": 154, - "w": 22, - "h": 21 + "x": 241, + "y": 306, + "w": 23, + "h": 19 } }, { - "filename": "syrupy_apple", + "filename": "rogue_egg", "rotated": false, "trimmed": true, "sourceSize": { @@ -5331,20 +4806,20 @@ "h": 32 }, "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 22, - "h": 21 + "x": 6, + "y": 5, + "w": 20, + "h": 22 }, "frame": { - "x": 353, - "y": 154, - "w": 22, - "h": 21 + "x": 244, + "y": 325, + "w": 20, + "h": 22 } }, { - "filename": "tart_apple", + "filename": "deep_sea_tooth", "rotated": false, "trimmed": true, "sourceSize": { @@ -5358,8 +4833,8 @@ "h": 21 }, "frame": { - "x": 375, - "y": 154, + "x": 265, + "y": 112, "w": 22, "h": 21 } @@ -5379,33 +4854,12 @@ "h": 22 }, "frame": { - "x": 397, - "y": 154, + "x": 259, + "y": 133, "w": 22, "h": 22 } }, - { - "filename": "tera_orb", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 22, - "h": 20 - }, - "frame": { - "x": 213, - "y": 168, - "w": 22, - "h": 20 - } - }, { "filename": "tm_bug", "rotated": false, @@ -5421,33 +4875,12 @@ "h": 22 }, "frame": { - "x": 206, - "y": 188, + "x": 287, + "y": 111, "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": 206, - "y": 210, - "w": 22, - "h": 19 - } - }, { "filename": "tm_dark", "rotated": false, @@ -5463,8 +4896,8 @@ "h": 22 }, "frame": { - "x": 207, - "y": 229, + "x": 281, + "y": 133, "w": 22, "h": 22 } @@ -5484,8 +4917,8 @@ "h": 22 }, "frame": { - "x": 207, - "y": 251, + "x": 309, + "y": 111, "w": 22, "h": 22 } @@ -5505,33 +4938,12 @@ "h": 22 }, "frame": { - "x": 211, - "y": 273, + "x": 303, + "y": 133, "w": 22, "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": 217, - "y": 295, - "w": 17, - "h": 22 - } - }, { "filename": "tm_fairy", "rotated": false, @@ -5547,8 +4959,8 @@ "h": 22 }, "frame": { - "x": 235, - "y": 169, + "x": 331, + "y": 111, "w": 22, "h": 22 } @@ -5568,33 +4980,12 @@ "h": 22 }, "frame": { - "x": 228, - "y": 191, + "x": 325, + "y": 133, "w": 22, "h": 22 } }, - { - "filename": "absolite", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 8, - "w": 16, - "h": 16 - }, - "frame": { - "x": 228, - "y": 213, - "w": 16, - "h": 16 - } - }, { "filename": "tm_fire", "rotated": false, @@ -5610,8 +5001,8 @@ "h": 22 }, "frame": { - "x": 229, - "y": 229, + "x": 353, + "y": 111, "w": 22, "h": 22 } @@ -5631,8 +5022,8 @@ "h": 22 }, "frame": { - "x": 229, - "y": 251, + "x": 347, + "y": 133, "w": 22, "h": 22 } @@ -5652,8 +5043,8 @@ "h": 22 }, "frame": { - "x": 233, - "y": 273, + "x": 375, + "y": 111, "w": 22, "h": 22 } @@ -5673,8 +5064,8 @@ "h": 22 }, "frame": { - "x": 234, - "y": 295, + "x": 369, + "y": 133, "w": 22, "h": 22 } @@ -5694,12 +5085,33 @@ "h": 22 }, "frame": { - "x": 222, - "y": 317, + "x": 397, + "y": 111, "w": 22, "h": 22 } }, + { + "filename": "pp_up", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 16, + "h": 24 + }, + "frame": { + "x": 419, + "y": 111, + "w": 16, + "h": 24 + } + }, { "filename": "tm_ice", "rotated": false, @@ -5715,8 +5127,8 @@ "h": 22 }, "frame": { - "x": 223, - "y": 339, + "x": 391, + "y": 133, "w": 22, "h": 22 } @@ -5736,12 +5148,33 @@ "h": 22 }, "frame": { - "x": 226, - "y": 361, + "x": 413, + "y": 135, "w": 22, "h": 22 } }, + { + "filename": "mystic_ticket", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 7, + "w": 23, + "h": 19 + }, + "frame": { + "x": 259, + "y": 155, + "w": 23, + "h": 19 + } + }, { "filename": "tm_poison", "rotated": false, @@ -5757,8 +5190,8 @@ "h": 22 }, "frame": { - "x": 226, - "y": 383, + "x": 260, + "y": 174, "w": 22, "h": 22 } @@ -5778,8 +5211,8 @@ "h": 22 }, "frame": { - "x": 229, - "y": 405, + "x": 282, + "y": 155, "w": 22, "h": 22 } @@ -5799,8 +5232,8 @@ "h": 22 }, "frame": { - "x": 244, - "y": 317, + "x": 261, + "y": 196, "w": 22, "h": 22 } @@ -5820,8 +5253,8 @@ "h": 22 }, "frame": { - "x": 245, - "y": 339, + "x": 304, + "y": 155, "w": 22, "h": 22 } @@ -5841,8 +5274,8 @@ "h": 22 }, "frame": { - "x": 248, - "y": 361, + "x": 262, + "y": 218, "w": 22, "h": 22 } @@ -5862,8 +5295,8 @@ "h": 22 }, "frame": { - "x": 248, - "y": 383, + "x": 326, + "y": 155, "w": 22, "h": 22 } @@ -5883,54 +5316,12 @@ "h": 22 }, "frame": { - "x": 251, - "y": 405, + "x": 348, + "y": 155, "w": 22, "h": 22 } }, - { - "filename": "eviolite", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 8, - "w": 15, - "h": 15 - }, - "frame": { - "x": 419, - "y": 154, - "w": 15, - "h": 15 - } - }, - { - "filename": "prism_scale", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 9, - "y": 8, - "w": 15, - "h": 15 - }, - "frame": { - "x": 419, - "y": 169, - "w": 15, - "h": 15 - } - }, { "filename": "x_accuracy", "rotated": false, @@ -5946,113 +5337,8 @@ "h": 22 }, "frame": { - "x": 257, - "y": 174, - "w": 22, - "h": 22 - } - }, - { - "filename": "x_attack", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 279, - "y": 175, - "w": 22, - "h": 22 - } - }, - { - "filename": "x_defense", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 301, - "y": 175, - "w": 22, - "h": 22 - } - }, - { - "filename": "x_sp_atk", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 323, - "y": 175, - "w": 22, - "h": 22 - } - }, - { - "filename": "x_sp_def", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 345, - "y": 175, - "w": 22, - "h": 22 - } - }, - { - "filename": "x_speed", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 367, - "y": 175, + "x": 370, + "y": 155, "w": 22, "h": 22 } @@ -6072,14 +5358,14 @@ "h": 21 }, "frame": { - "x": 389, - "y": 176, + "x": 392, + "y": 155, "w": 21, "h": 21 } }, { - "filename": "masterpiece_teacup", + "filename": "x_attack", "rotated": false, "trimmed": true, "sourceSize": { @@ -6088,19 +5374,145 @@ }, "spriteSourceSize": { "x": 5, - "y": 7, - "w": 21, - "h": 18 + "y": 5, + "w": 22, + "h": 22 }, "frame": { - "x": 250, - "y": 196, - "w": 21, - "h": 18 + "x": 413, + "y": 157, + "w": 22, + "h": 22 } }, { - "filename": "metal_alloy", + "filename": "pair_of_tickets", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 7, + "w": 23, + "h": 19 + }, + "frame": { + "x": 282, + "y": 177, + "w": 23, + "h": 19 + } + }, + { + "filename": "x_defense", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 22 + }, + "frame": { + "x": 283, + "y": 196, + "w": 22, + "h": 22 + } + }, + { + "filename": "x_sp_atk", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 22 + }, + "frame": { + "x": 305, + "y": 177, + "w": 22, + "h": 22 + } + }, + { + "filename": "x_sp_def", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 22 + }, + "frame": { + "x": 327, + "y": 177, + "w": 22, + "h": 22 + } + }, + { + "filename": "x_speed", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 22 + }, + "frame": { + "x": 349, + "y": 177, + "w": 22, + "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": 263, + "y": 240, + "w": 22, + "h": 21 + } + }, + { + "filename": "sitrus_berry", "rotated": false, "trimmed": true, "sourceSize": { @@ -6109,15 +5521,57 @@ }, "spriteSourceSize": { "x": 6, - "y": 7, - "w": 21, - "h": 19 + "y": 5, + "w": 20, + "h": 22 }, "frame": { - "x": 271, - "y": 197, - "w": 21, - "h": 19 + "x": 284, + "y": 218, + "w": 20, + "h": 22 + } + }, + { + "filename": "sweet_apple", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 22, + "h": 21 + }, + "frame": { + "x": 263, + "y": 261, + "w": 22, + "h": 21 + } + }, + { + "filename": "syrupy_apple", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 22, + "h": 21 + }, + "frame": { + "x": 263, + "y": 282, + "w": 22, + "h": 21 } }, { @@ -6135,8 +5589,8 @@ "h": 21 }, "frame": { - "x": 292, - "y": 197, + "x": 371, + "y": 177, "w": 21, "h": 21 } @@ -6156,12 +5610,117 @@ "h": 21 }, "frame": { - "x": 313, - "y": 197, + "x": 392, + "y": 176, "w": 21, "h": 21 } }, + { + "filename": "tart_apple", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 22, + "h": 21 + }, + "frame": { + "x": 413, + "y": 179, + "w": 22, + "h": 21 + } + }, + { + "filename": "relic_crown", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 7, + "w": 23, + "h": 18 + }, + "frame": { + "x": 305, + "y": 199, + "w": 23, + "h": 18 + } + }, + { + "filename": "sachet", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 18, + "h": 23 + }, + "frame": { + "x": 285, + "y": 240, + "w": 18, + "h": 23 + } + }, + { + "filename": "chill_drive", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 8, + "w": 23, + "h": 17 + }, + "frame": { + "x": 328, + "y": 199, + "w": 23, + "h": 17 + } + }, + { + "filename": "hyper_potion", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 5, + "w": 17, + "h": 23 + }, + "frame": { + "x": 285, + "y": 263, + "w": 17, + "h": 23 + } + }, { "filename": "zoom_lens", "rotated": false, @@ -6177,14 +5736,14 @@ "h": 21 }, "frame": { - "x": 334, - "y": 197, + "x": 264, + "y": 303, "w": 21, "h": 21 } }, { - "filename": "dawn_stone", + "filename": "tera_orb", "rotated": false, "trimmed": true, "sourceSize": { @@ -6192,20 +5751,20 @@ "h": 32 }, "spriteSourceSize": { - "x": 6, + "x": 5, "y": 6, - "w": 20, - "h": 21 + "w": 22, + "h": 20 }, "frame": { - "x": 355, - "y": 197, - "w": 20, - "h": 21 + "x": 264, + "y": 324, + "w": 22, + "h": 20 } }, { - "filename": "flying_tera_shard", + "filename": "potion", "rotated": false, "trimmed": true, "sourceSize": { @@ -6213,20 +5772,20 @@ "h": 32 }, "spriteSourceSize": { - "x": 7, + "x": 8, "y": 5, - "w": 20, - "h": 21 + "w": 17, + "h": 23 }, "frame": { - "x": 375, - "y": 197, - "w": 20, - "h": 21 + "x": 285, + "y": 286, + "w": 17, + "h": 23 } }, { - "filename": "quick_claw", + "filename": "blue_orb", "rotated": false, "trimmed": true, "sourceSize": { @@ -6236,14 +5795,98 @@ "spriteSourceSize": { "x": 6, "y": 6, - "w": 19, - "h": 21 + "w": 20, + "h": 20 }, "frame": { - "x": 395, - "y": 197, - "w": 19, - "h": 21 + "x": 351, + "y": 199, + "w": 20, + "h": 20 + } + }, + { + "filename": "gb", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 20, + "h": 20 + }, + "frame": { + "x": 371, + "y": 198, + "w": 20, + "h": 20 + } + }, + { + "filename": "silver_powder", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 11, + "w": 24, + "h": 15 + }, + "frame": { + "x": 285, + "y": 309, + "w": 24, + "h": 15 + } + }, + { + "filename": "upgrade", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 22, + "h": 19 + }, + "frame": { + "x": 286, + "y": 324, + "w": 22, + "h": 19 + } + }, + { + "filename": "douse_drive", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 8, + "w": 23, + "h": 17 + }, + "frame": { + "x": 134, + "y": 348, + "w": 23, + "h": 17 } }, { @@ -6261,12 +5904,33 @@ "h": 20 }, "frame": { - "x": 414, - "y": 184, + "x": 132, + "y": 365, "w": 20, "h": 20 } }, + { + "filename": "metal_alloy", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 7, + "w": 21, + "h": 19 + }, + "frame": { + "x": 157, + "y": 348, + "w": 21, + "h": 19 + } + }, { "filename": "mb", "rotated": false, @@ -6282,8 +5946,8 @@ "h": 20 }, "frame": { - "x": 414, - "y": 204, + "x": 178, + "y": 347, "w": 20, "h": 20 } @@ -6303,33 +5967,12 @@ "h": 20 }, "frame": { - "x": 251, - "y": 214, + "x": 198, + "y": 347, "w": 20, "h": 20 } }, - { - "filename": "old_gateau", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 21, - "h": 18 - }, - "frame": { - "x": 271, - "y": 216, - "w": 21, - "h": 18 - } - }, { "filename": "pb_gold", "rotated": false, @@ -6345,33 +5988,12 @@ "h": 20 }, "frame": { - "x": 251, - "y": 234, + "x": 218, + "y": 347, "w": 20, "h": 20 } }, - { - "filename": "lum_berry", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 20, - "h": 19 - }, - "frame": { - "x": 251, - "y": 254, - "w": 20, - "h": 19 - } - }, { "filename": "pb_silver", "rotated": false, @@ -6387,12 +6009,180 @@ "h": 20 }, "frame": { - "x": 271, - "y": 234, + "x": 238, + "y": 347, "w": 20, "h": 20 } }, + { + "filename": "shock_drive", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 8, + "w": 23, + "h": 17 + }, + "frame": { + "x": 152, + "y": 367, + "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": 175, + "y": 367, + "w": 23, + "h": 17 + } + }, + { + "filename": "old_gateau", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 21, + "h": 18 + }, + "frame": { + "x": 198, + "y": 367, + "w": 21, + "h": 18 + } + }, + { + "filename": "sharp_meteorite", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 21, + "h": 18 + }, + "frame": { + "x": 219, + "y": 367, + "w": 21, + "h": 18 + } + }, + { + "filename": "baton", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 7, + "w": 18, + "h": 18 + }, + "frame": { + "x": 240, + "y": 367, + "w": 18, + "h": 18 + } + }, + { + "filename": "everstone", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 20, + "h": 17 + }, + "frame": { + "x": 132, + "y": 385, + "w": 20, + "h": 17 + } + }, + { + "filename": "unremarkable_teacup", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 21, + "h": 18 + }, + "frame": { + "x": 152, + "y": 384, + "w": 21, + "h": 18 + } + }, + { + "filename": "lum_berry", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 7, + "w": 20, + "h": 19 + }, + "frame": { + "x": 173, + "y": 384, + "w": 20, + "h": 19 + } + }, { "filename": "power_herb", "rotated": false, @@ -6408,8 +6198,29 @@ "h": 19 }, "frame": { - "x": 271, - "y": 254, + "x": 193, + "y": 385, + "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": 213, + "y": 385, "w": 20, "h": 19 } @@ -6429,14 +6240,14 @@ "h": 20 }, "frame": { - "x": 255, - "y": 273, + "x": 233, + "y": 385, "w": 20, "h": 20 } }, { - "filename": "spell_tag", + "filename": "protein", "rotated": false, "trimmed": true, "sourceSize": { @@ -6444,20 +6255,83 @@ "h": 32 }, "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 19, - "h": 21 + "x": 8, + "y": 4, + "w": 16, + "h": 24 }, "frame": { - "x": 256, - "y": 293, - "w": 19, - "h": 21 + "x": 258, + "y": 347, + "w": 16, + "h": 24 } }, { - "filename": "sharp_meteorite", + "filename": "repel", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 16, + "h": 24 + }, + "frame": { + "x": 274, + "y": 344, + "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": 290, + "y": 343, + "w": 17, + "h": 23 + } + }, + { + "filename": "abomasite", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 8, + "w": 16, + "h": 16 + }, + "frame": { + "x": 258, + "y": 371, + "w": 16, + "h": 16 + } + }, + { + "filename": "big_mushroom", "rotated": false, "trimmed": true, "sourceSize": { @@ -6466,15 +6340,36 @@ }, "spriteSourceSize": { "x": 6, - "y": 8, - "w": 21, - "h": 18 + "y": 6, + "w": 19, + "h": 19 }, "frame": { - "x": 292, - "y": 218, - "w": 21, - "h": 18 + "x": 274, + "y": 368, + "w": 19, + "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": 293, + "y": 366, + "w": 15, + "h": 23 } }, { @@ -6492,33 +6387,12 @@ "h": 20 }, "frame": { - "x": 291, - "y": 236, + "x": 253, + "y": 387, "w": 20, "h": 20 } }, - { - "filename": "unremarkable_teacup", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 21, - "h": 18 - }, - "frame": { - "x": 313, - "y": 218, - "w": 21, - "h": 18 - } - }, { "filename": "strange_ball", "rotated": false, @@ -6534,14 +6408,350 @@ "h": 20 }, "frame": { - "x": 311, - "y": 236, + "x": 273, + "y": 387, "w": 20, "h": 20 } }, { - "filename": "razor_claw", + "filename": "candy", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 11, + "w": 18, + "h": 18 + }, + "frame": { + "x": 293, + "y": 389, + "w": 18, + "h": 18 + } + }, + { + "filename": "super_repel", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 16, + "h": 24 + }, + "frame": { + "x": 302, + "y": 263, + "w": 16, + "h": 24 + } + }, + { + "filename": "metronome", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 5, + "w": 17, + "h": 22 + }, + "frame": { + "x": 302, + "y": 287, + "w": 17, + "h": 22 + } + }, + { + "filename": "absolite", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 8, + "w": 16, + "h": 16 + }, + "frame": { + "x": 309, + "y": 309, + "w": 16, + "h": 16 + } + }, + { + "filename": "candy_jar", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 19, + "h": 20 + }, + "frame": { + "x": 308, + "y": 325, + "w": 19, + "h": 20 + } + }, + { + "filename": "quick_claw", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 19, + "h": 21 + }, + "frame": { + "x": 307, + "y": 345, + "w": 19, + "h": 21 + } + }, + { + "filename": "soothe_bell", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 5, + "w": 17, + "h": 22 + }, + "frame": { + "x": 308, + "y": 366, + "w": 17, + "h": 22 + } + }, + { + "filename": "golden_egg", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 6, + "w": 17, + "h": 20 + }, + "frame": { + "x": 311, + "y": 388, + "w": 17, + "h": 20 + } + }, + { + "filename": "leftovers", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 5, + "w": 15, + "h": 22 + }, + "frame": { + "x": 325, + "y": 366, + "w": 15, + "h": 22 + } + }, + { + "filename": "spell_tag", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 6, + "w": 19, + "h": 21 + }, + "frame": { + "x": 326, + "y": 345, + "w": 19, + "h": 21 + } + }, + { + "filename": "hard_stone", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 19, + "h": 20 + }, + "frame": { + "x": 328, + "y": 388, + "w": 19, + "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": 340, + "y": 366, + "w": 17, + "h": 20 + } + }, + { + "filename": "unknown", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 16, + "h": 24 + }, + "frame": { + "x": 347, + "y": 386, + "w": 16, + "h": 24 + } + }, + { + "filename": "mega_bracelet", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 20, + "h": 16 + }, + "frame": { + "x": 67, + "y": 402, + "w": 20, + "h": 16 + } + }, + { + "filename": "revive", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 10, + "y": 8, + "w": 12, + "h": 17 + }, + "frame": { + "x": 65, + "y": 418, + "w": 12, + "h": 17 + } + }, + { + "filename": "aerodactylite", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 8, + "w": 16, + "h": 16 + }, + "frame": { + "x": 77, + "y": 418, + "w": 16, + "h": 16 + } + }, + { + "filename": "white_herb", "rotated": false, "trimmed": true, "sourceSize": { @@ -6555,8 +6765,8 @@ "h": 19 }, "frame": { - "x": 334, - "y": 218, + "x": 88, + "y": 399, "w": 20, "h": 19 } @@ -6576,119 +6786,14 @@ "h": 20 }, "frame": { - "x": 354, - "y": 218, + "x": 108, + "y": 399, "w": 20, "h": 20 } }, { - "filename": "hard_stone", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 19, - "h": 20 - }, - "frame": { - "x": 374, - "y": 218, - "w": 19, - "h": 20 - } - }, - { - "filename": "white_herb", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 20, - "h": 19 - }, - "frame": { - "x": 393, - "y": 218, - "w": 20, - "h": 19 - } - }, - { - "filename": "everstone", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 20, - "h": 17 - }, - "frame": { - "x": 291, - "y": 256, - "w": 20, - "h": 17 - } - }, - { - "filename": "big_mushroom", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 19, - "h": 19 - }, - "frame": { - "x": 275, - "y": 273, - "w": 19, - "h": 19 - } - }, - { - "filename": "miracle_seed", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 19, - "h": 19 - }, - "frame": { - "x": 275, - "y": 292, - "w": 19, - "h": 19 - } - }, - { - "filename": "golden_egg", + "filename": "relic_band", "rotated": false, "trimmed": true, "sourceSize": { @@ -6697,311 +6802,17 @@ }, "spriteSourceSize": { "x": 7, - "y": 6, + "y": 9, "w": 17, - "h": 20 - }, - "frame": { - "x": 294, - "y": 273, - "w": 17, - "h": 20 - } - }, - { - "filename": "razor_fang", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 18, - "h": 20 - }, - "frame": { - "x": 311, - "y": 256, - "w": 18, - "h": 20 - } - }, - { - "filename": "baton", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 18, - "h": 18 - }, - "frame": { - "x": 294, - "y": 293, - "w": 18, - "h": 18 - } - }, - { - "filename": "wl_ability_urge", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 20, - "h": 18 - }, - "frame": { - "x": 331, - "y": 237, - "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": 351, - "y": 238, - "w": 20, - "h": 18 - } - }, - { - "filename": "wl_awakening", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 20, - "h": 18 - }, - "frame": { - "x": 371, - "y": 238, - "w": 20, - "h": 18 - } - }, - { - "filename": "aerodactylite", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 8, - "w": 16, "h": 16 }, "frame": { - "x": 311, - "y": 276, - "w": 16, + "x": 93, + "y": 419, + "w": 17, "h": 16 } }, - { - "filename": "lucky_egg", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 17, - "h": 20 - }, - "frame": { - "x": 312, - "y": 292, - "w": 17, - "h": 20 - } - }, - { - "filename": "wl_burn_heal", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 20, - "h": 18 - }, - "frame": { - "x": 413, - "y": 224, - "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": 393, - "y": 237, - "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": 413, - "y": 242, - "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": 266, - "y": 314, - "w": 18, - "h": 19 - } - }, - { - "filename": "wl_elixir", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 20, - "h": 18 - }, - "frame": { - "x": 284, - "y": 311, - "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": 267, - "y": 333, - "w": 18, - "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": 285, - "y": 329, - "w": 20, - "h": 18 - } - }, { "filename": "aggronite", "rotated": false, @@ -7017,33 +6828,12 @@ "h": 16 }, "frame": { - "x": 304, - "y": 312, + "x": 110, + "y": 419, "w": 16, "h": 16 } }, - { - "filename": "dark_stone", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 18, - "h": 18 - }, - "frame": { - "x": 305, - "y": 328, - "w": 18, - "h": 18 - } - }, { "filename": "alakazite", "rotated": false, @@ -7059,14 +6849,14 @@ "h": 16 }, "frame": { - "x": 320, - "y": 312, + "x": 126, + "y": 419, "w": 16, "h": 16 } }, { - "filename": "flame_orb", + "filename": "altarianite", "rotated": false, "trimmed": true, "sourceSize": { @@ -7074,20 +6864,20 @@ "h": 32 }, "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 18, - "h": 18 + "x": 8, + "y": 8, + "w": 16, + "h": 16 }, "frame": { - "x": 323, - "y": 328, - "w": 18, - "h": 18 + "x": 128, + "y": 403, + "w": 16, + "h": 16 } }, { - "filename": "wl_full_heal", + "filename": "wl_ability_urge", "rotated": false, "trimmed": true, "sourceSize": { @@ -7101,14 +6891,119 @@ "h": 18 }, "frame": { - "x": 285, - "y": 347, + "x": 144, + "y": 402, "w": 20, "h": 18 } }, { - "filename": "wl_full_restore", + "filename": "candy_overlay", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 12, + "w": 16, + "h": 15 + }, + "frame": { + "x": 142, + "y": 420, + "w": 16, + "h": 15 + } + }, + { + "filename": "eviolite", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 8, + "w": 15, + "h": 15 + }, + "frame": { + "x": 158, + "y": 420, + "w": 15, + "h": 15 + } + }, + { + "filename": "ampharosite", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 8, + "w": 16, + "h": 16 + }, + "frame": { + "x": 164, + "y": 404, + "w": 16, + "h": 16 + } + }, + { + "filename": "prism_scale", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 9, + "y": 8, + "w": 15, + "h": 15 + }, + "frame": { + "x": 173, + "y": 420, + "w": 15, + "h": 15 + } + }, + { + "filename": "audinite", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 8, + "w": 16, + "h": 16 + }, + "frame": { + "x": 180, + "y": 404, + "w": 16, + "h": 16 + } + }, + { + "filename": "wl_antidote", "rotated": false, "trimmed": true, "sourceSize": { @@ -7122,176 +7017,8 @@ "h": 18 }, "frame": { - "x": 305, - "y": 346, - "w": 20, - "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": 325, - "y": 346, - "w": 18, - "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": 270, - "y": 365, - "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": 270, - "y": 383, - "w": 20, - "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": 290, - "y": 365, - "w": 18, - "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": 308, - "y": 364, - "w": 20, - "h": 18 - } - }, - { - "filename": "toxic_orb", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 18, - "h": 18 - }, - "frame": { - "x": 290, - "y": 383, - "w": 18, - "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": 308, - "y": 382, - "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": 273, - "y": 401, + "x": 196, + "y": 404, "w": 20, "h": 18 } @@ -7311,12 +7038,369 @@ "h": 18 }, "frame": { - "x": 328, - "y": 364, + "x": 216, + "y": 404, "w": 16, "h": 18 } }, + { + "filename": "wl_awakening", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 20, + "h": 18 + }, + "frame": { + "x": 232, + "y": 405, + "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": 252, + "y": 407, + "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": 272, + "y": 407, + "w": 20, + "h": 18 + } + }, + { + "filename": "miracle_seed", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 7, + "w": 19, + "h": 19 + }, + "frame": { + "x": 292, + "y": 407, + "w": 19, + "h": 19 + } + }, + { + "filename": "wl_custom_thief", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 20, + "h": 18 + }, + "frame": { + "x": 311, + "y": 408, + "w": 20, + "h": 18 + } + }, + { + "filename": "zinc", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 16, + "h": 24 + }, + "frame": { + "x": 331, + "y": 408, + "w": 16, + "h": 24 + } + }, + { + "filename": "razor_fang", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 6, + "w": 18, + "h": 20 + }, + "frame": { + "x": 347, + "y": 410, + "w": 18, + "h": 20 + } + }, + { + "filename": "wl_elixir", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 20, + "h": 18 + }, + "frame": { + "x": 392, + "y": 197, + "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": 412, + "y": 200, + "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": 391, + "y": 215, + "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": 371, + "y": 218, + "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": 411, + "y": 218, + "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": 391, + "y": 233, + "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": 411, + "y": 236, + "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": 305, + "y": 217, + "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": 304, + "y": 235, + "w": 20, + "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": 325, + "y": 217, + "w": 18, + "h": 18 + } + }, { "filename": "wl_max_elixir", "rotated": false, @@ -7332,8 +7416,8 @@ "h": 18 }, "frame": { - "x": 328, - "y": 382, + "x": 324, + "y": 235, "w": 20, "h": 18 } @@ -7353,218 +7437,8 @@ "h": 18 }, "frame": { - "x": 293, - "y": 401, - "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": 313, - "y": 400, - "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": 313, - "y": 418, - "w": 16, - "h": 16 - } - }, - { - "filename": "ampharosite", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 8, - "w": 16, - "h": 16 - }, - "frame": { - "x": 329, - "y": 418, - "w": 16, - "h": 16 - } - }, - { - "filename": "wl_max_revive", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 20, - "h": 18 - }, - "frame": { - "x": 333, - "y": 400, - "w": 20, - "h": 18 - } - }, - { - "filename": "audinite", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 8, - "w": 16, - "h": 16 - }, - "frame": { - "x": 345, - "y": 418, - "w": 16, - "h": 16 - } - }, - { - "filename": "wl_paralyze_heal", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 20, - "h": 18 - }, - "frame": { - "x": 331, - "y": 255, - "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": 351, - "y": 256, - "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": 371, - "y": 256, - "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": 391, - "y": 255, - "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": 411, - "y": 260, + "x": 318, + "y": 253, "w": 20, "h": 18 } @@ -7584,12 +7458,75 @@ "h": 16 }, "frame": { - "x": 327, - "y": 276, + "x": 318, + "y": 271, "w": 16, "h": 16 } }, + { + "filename": "oval_stone", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 7, + "w": 18, + "h": 19 + }, + "frame": { + "x": 319, + "y": 287, + "w": 18, + "h": 19 + } + }, + { + "filename": "flame_orb", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 7, + "w": 18, + "h": 18 + }, + "frame": { + "x": 325, + "y": 306, + "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": 327, + "y": 324, + "w": 18, + "h": 18 + } + }, { "filename": "beedrillite", "rotated": false, @@ -7605,12 +7542,54 @@ "h": 16 }, "frame": { - "x": 329, - "y": 292, + "x": 343, + "y": 219, "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": 344, + "y": 235, + "w": 18, + "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": 338, + "y": 253, + "w": 20, + "h": 18 + } + }, { "filename": "blastoisinite", "rotated": false, @@ -7626,12 +7605,33 @@ "h": 16 }, "frame": { - "x": 343, - "y": 274, + "x": 334, + "y": 271, "w": 16, "h": 16 } }, + { + "filename": "toxic_orb", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 7, + "w": 18, + "h": 18 + }, + "frame": { + "x": 337, + "y": 287, + "w": 18, + "h": 18 + } + }, { "filename": "blazikenite", "rotated": false, @@ -7647,12 +7647,75 @@ "h": 16 }, "frame": { - "x": 359, - "y": 274, + "x": 350, + "y": 271, "w": 16, "h": 16 } }, + { + "filename": "wl_max_revive", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 20, + "h": 18 + }, + "frame": { + "x": 358, + "y": 253, + "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": 343, + "y": 305, + "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": 355, + "y": 287, + "w": 20, + "h": 18 + } + }, { "filename": "cameruptite", "rotated": false, @@ -7668,12 +7731,75 @@ "h": 16 }, "frame": { - "x": 375, - "y": 274, + "x": 366, + "y": 271, "w": 16, "h": 16 } }, + { + "filename": "wl_reset_urge", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 20, + "h": 18 + }, + "frame": { + "x": 345, + "y": 323, + "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": 345, + "y": 341, + "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": 363, + "y": 305, + "w": 20, + "h": 18 + } + }, { "filename": "charizardite_x", "rotated": false, @@ -7689,8 +7815,8 @@ "h": 16 }, "frame": { - "x": 391, - "y": 273, + "x": 365, + "y": 323, "w": 16, "h": 16 } @@ -7710,8 +7836,8 @@ "h": 16 }, "frame": { - "x": 345, - "y": 290, + "x": 365, + "y": 339, "w": 16, "h": 16 } @@ -7731,8 +7857,8 @@ "h": 16 }, "frame": { - "x": 361, - "y": 290, + "x": 362, + "y": 236, "w": 16, "h": 16 } @@ -7752,8 +7878,8 @@ "h": 16 }, "frame": { - "x": 377, - "y": 290, + "x": 375, + "y": 287, "w": 16, "h": 16 } @@ -7773,8 +7899,8 @@ "h": 16 }, "frame": { - "x": 393, - "y": 289, + "x": 383, + "y": 303, "w": 16, "h": 16 } @@ -7794,8 +7920,8 @@ "h": 16 }, "frame": { - "x": 336, - "y": 308, + "x": 365, + "y": 355, "w": 16, "h": 16 } @@ -7815,8 +7941,8 @@ "h": 16 }, "frame": { - "x": 352, - "y": 306, + "x": 383, + "y": 319, "w": 16, "h": 16 } @@ -7836,8 +7962,8 @@ "h": 16 }, "frame": { - "x": 368, - "y": 306, + "x": 381, + "y": 335, "w": 16, "h": 16 } @@ -7857,8 +7983,8 @@ "h": 16 }, "frame": { - "x": 384, - "y": 306, + "x": 381, + "y": 351, "w": 16, "h": 16 } @@ -7878,8 +8004,8 @@ "h": 16 }, "frame": { - "x": 400, - "y": 305, + "x": 381, + "y": 367, "w": 16, "h": 16 } @@ -7899,8 +8025,8 @@ "h": 16 }, "frame": { - "x": 341, - "y": 324, + "x": 365, + "y": 371, "w": 16, "h": 16 } @@ -7920,8 +8046,8 @@ "h": 16 }, "frame": { - "x": 357, - "y": 322, + "x": 363, + "y": 387, "w": 16, "h": 16 } @@ -7941,8 +8067,8 @@ "h": 16 }, "frame": { - "x": 373, - "y": 322, + "x": 365, + "y": 403, "w": 16, "h": 16 } @@ -7962,8 +8088,8 @@ "h": 16 }, "frame": { - "x": 389, - "y": 322, + "x": 365, + "y": 419, "w": 16, "h": 16 } @@ -7983,8 +8109,8 @@ "h": 16 }, "frame": { - "x": 405, - "y": 321, + "x": 381, + "y": 383, "w": 16, "h": 16 } @@ -8004,8 +8130,8 @@ "h": 16 }, "frame": { - "x": 343, - "y": 340, + "x": 381, + "y": 399, "w": 16, "h": 16 } @@ -8025,8 +8151,8 @@ "h": 16 }, "frame": { - "x": 359, - "y": 338, + "x": 381, + "y": 415, "w": 16, "h": 16 } @@ -8046,8 +8172,8 @@ "h": 16 }, "frame": { - "x": 375, - "y": 338, + "x": 378, + "y": 251, "w": 16, "h": 16 } @@ -8067,8 +8193,8 @@ "h": 16 }, "frame": { - "x": 391, - "y": 338, + "x": 394, + "y": 251, "w": 16, "h": 16 } @@ -8088,8 +8214,8 @@ "h": 16 }, "frame": { - "x": 407, - "y": 337, + "x": 382, + "y": 267, "w": 16, "h": 16 } @@ -8109,8 +8235,8 @@ "h": 16 }, "frame": { - "x": 344, - "y": 356, + "x": 410, + "y": 254, "w": 16, "h": 16 } @@ -8130,8 +8256,8 @@ "h": 16 }, "frame": { - "x": 360, - "y": 354, + "x": 391, + "y": 283, "w": 16, "h": 16 } @@ -8151,8 +8277,8 @@ "h": 16 }, "frame": { - "x": 376, - "y": 354, + "x": 399, + "y": 299, "w": 16, "h": 16 } @@ -8172,8 +8298,8 @@ "h": 16 }, "frame": { - "x": 392, - "y": 354, + "x": 399, + "y": 315, "w": 16, "h": 16 } @@ -8193,8 +8319,8 @@ "h": 16 }, "frame": { - "x": 408, - "y": 353, + "x": 399, + "y": 331, "w": 16, "h": 16 } @@ -8214,8 +8340,8 @@ "h": 16 }, "frame": { - "x": 409, - "y": 278, + "x": 397, + "y": 347, "w": 16, "h": 16 } @@ -8235,8 +8361,8 @@ "h": 16 }, "frame": { - "x": 348, - "y": 372, + "x": 397, + "y": 363, "w": 16, "h": 16 } @@ -8256,8 +8382,8 @@ "h": 16 }, "frame": { - "x": 364, - "y": 370, + "x": 397, + "y": 379, "w": 16, "h": 16 } @@ -8277,8 +8403,8 @@ "h": 16 }, "frame": { - "x": 380, - "y": 370, + "x": 397, + "y": 395, "w": 16, "h": 16 } @@ -8298,12 +8424,33 @@ "h": 16 }, "frame": { - "x": 396, - "y": 370, + "x": 397, + "y": 411, "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": 188, + "y": 422, + "w": 15, + "h": 11 + } + }, { "filename": "sharpedonite", "rotated": false, @@ -8319,8 +8466,8 @@ "h": 16 }, "frame": { - "x": 412, - "y": 369, + "x": 413, + "y": 347, "w": 16, "h": 16 } @@ -8340,8 +8487,8 @@ "h": 16 }, "frame": { - "x": 364, - "y": 386, + "x": 413, + "y": 363, "w": 16, "h": 16 } @@ -8361,8 +8508,8 @@ "h": 16 }, "frame": { - "x": 380, - "y": 386, + "x": 413, + "y": 379, "w": 16, "h": 16 } @@ -8382,8 +8529,8 @@ "h": 16 }, "frame": { - "x": 396, - "y": 386, + "x": 413, + "y": 395, "w": 16, "h": 16 } @@ -8403,8 +8550,8 @@ "h": 16 }, "frame": { - "x": 412, - "y": 385, + "x": 413, + "y": 411, "w": 16, "h": 16 } @@ -8424,8 +8571,8 @@ "h": 16 }, "frame": { - "x": 353, - "y": 402, + "x": 407, + "y": 270, "w": 16, "h": 16 } @@ -8445,8 +8592,8 @@ "h": 16 }, "frame": { - "x": 361, - "y": 418, + "x": 415, + "y": 286, "w": 16, "h": 16 } @@ -8466,8 +8613,8 @@ "h": 16 }, "frame": { - "x": 369, - "y": 402, + "x": 415, + "y": 302, "w": 16, "h": 16 } @@ -8478,6 +8625,6 @@ "meta": { "app": "https://www.codeandweb.com/texturepacker", "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:9b6fc7b241128f4f61686fe287e090cd:46e9caafcc91f3c30ff85a6e8d3f5227:110e074689c9edd2c54833ce2e4d9270$" + "smartupdate": "$TexturePacker:SmartUpdate:f593140f9e137ba20f8bcb629ad2d6dc:5a2e6eb481a58dab37c12113287770c0:110e074689c9edd2c54833ce2e4d9270$" } } diff --git a/public/images/items.png b/public/images/items.png index f0f11e9443e..ecc8d42daea 100644 Binary files a/public/images/items.png and b/public/images/items.png differ diff --git a/public/images/items/bronze_ribbon.png b/public/images/items/bronze_ribbon.png deleted file mode 100644 index 13eeb7254ca..00000000000 Binary files a/public/images/items/bronze_ribbon.png and /dev/null differ diff --git a/public/images/items/calendar.png b/public/images/items/calendar.png new file mode 100644 index 00000000000..4d891a856c3 Binary files /dev/null and b/public/images/items/calendar.png differ diff --git a/public/images/items/common_egg.png b/public/images/items/common_egg.png new file mode 100644 index 00000000000..c449611d532 Binary files /dev/null and b/public/images/items/common_egg.png differ diff --git a/public/images/items/common_ribbon.png b/public/images/items/common_ribbon.png new file mode 100644 index 00000000000..965527d747b Binary files /dev/null and b/public/images/items/common_ribbon.png differ diff --git a/public/images/items/epic_egg.png b/public/images/items/epic_egg.png new file mode 100644 index 00000000000..96950e27978 Binary files /dev/null and b/public/images/items/epic_egg.png differ diff --git a/public/images/items/flying_tera_shard.png b/public/images/items/flying_tera_shard.png index 42e2b16c4d2..7cecc5d0945 100644 Binary files a/public/images/items/flying_tera_shard.png and b/public/images/items/flying_tera_shard.png differ diff --git a/public/images/items/great_ribbon.png b/public/images/items/great_ribbon.png index e246d8db981..284ee6a3b3b 100644 Binary files a/public/images/items/great_ribbon.png and b/public/images/items/great_ribbon.png differ diff --git a/public/images/items/legendary_egg.png b/public/images/items/legendary_egg.png new file mode 100644 index 00000000000..291917d444c Binary files /dev/null and b/public/images/items/legendary_egg.png differ diff --git a/public/images/items/manaphy_egg.png b/public/images/items/manaphy_egg.png new file mode 100644 index 00000000000..2b5d8aa702a Binary files /dev/null and b/public/images/items/manaphy_egg.png differ diff --git a/public/images/items/master_ribbon.png b/public/images/items/master_ribbon.png index a8a181a52a0..710571d96ad 100644 Binary files a/public/images/items/master_ribbon.png and b/public/images/items/master_ribbon.png differ diff --git a/public/images/items/rare_egg.png b/public/images/items/rare_egg.png new file mode 100644 index 00000000000..b3da4eaaf44 Binary files /dev/null and b/public/images/items/rare_egg.png differ diff --git a/public/images/items/rogue_egg.png b/public/images/items/rogue_egg.png new file mode 100644 index 00000000000..a143b5f863c Binary files /dev/null and b/public/images/items/rogue_egg.png differ diff --git a/public/images/items/rogue_ribbon.png b/public/images/items/rogue_ribbon.png index 6864b6a1fb7..0482d193527 100644 Binary files a/public/images/items/rogue_ribbon.png and b/public/images/items/rogue_ribbon.png differ diff --git a/public/images/items/ultra_ribbon.png b/public/images/items/ultra_ribbon.png index f1342eb3bae..2fb3762a493 100644 Binary files a/public/images/items/ultra_ribbon.png and b/public/images/items/ultra_ribbon.png differ diff --git a/public/images/mystery-encounters/fun_and_games_wobbuffet.png b/public/images/mystery-encounters/fun_and_games_wobbuffet.png index 71997be5692..5d61512ea78 100644 Binary files a/public/images/mystery-encounters/fun_and_games_wobbuffet.png and b/public/images/mystery-encounters/fun_and_games_wobbuffet.png differ diff --git a/public/images/mystery-encounters/mysterious_chest_blue.png b/public/images/mystery-encounters/mysterious_chest_blue.png index f959db13aa7..6fa3a7c5475 100644 Binary files a/public/images/mystery-encounters/mysterious_chest_blue.png and b/public/images/mystery-encounters/mysterious_chest_blue.png differ diff --git a/public/images/pokemon/variant/585-autumn_1.json b/public/images/pokemon/variant/585-autumn_1.json deleted file mode 100644 index 6d76c48b366..00000000000 --- a/public/images/pokemon/variant/585-autumn_1.json +++ /dev/null @@ -1,3044 +0,0 @@ -{ - "textures": [ - { - "image": "585-autumn_1.png", - "format": "RGBA8888", - "size": { - "w": 195, - "h": 195 - }, - "scale": 1, - "frames": [ - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 34, - "h": 50 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 34, - "h": 50 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 32, - "h": 50 - }, - "frame": { - "x": 34, - "y": 50, - "w": 32, - "h": 50 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 32, - "h": 50 - }, - "frame": { - "x": 34, - "y": 50, - "w": 32, - "h": 50 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 32, - "h": 50 - }, - "frame": { - "x": 136, - "y": 48, - "w": 32, - "h": 50 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 32, - "h": 50 - }, - "frame": { - "x": 136, - "y": 48, - "w": 32, - "h": 50 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 32, - "h": 50 - }, - "frame": { - "x": 100, - "y": 95, - "w": 32, - "h": 50 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 32, - "h": 50 - }, - "frame": { - "x": 100, - "y": 95, - "w": 32, - "h": 50 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 66, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 66, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 128, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 128, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 128, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 128, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 159, - "y": 98, - "w": 31, - "h": 50 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 159, - "y": 98, - "w": 31, - "h": 50 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:5895c9b7b58344bc7455a02f687ef539:4df09e0e04d5b04fdeaf36f9db9673f9:c7e45605bee4014fbf86a5b3a10eafef$" - } -} \ No newline at end of file diff --git a/public/images/pokemon/variant/585-autumn_1.png b/public/images/pokemon/variant/585-autumn_1.png deleted file mode 100644 index f90e0b52879..00000000000 Binary files a/public/images/pokemon/variant/585-autumn_1.png and /dev/null differ diff --git a/public/images/pokemon/variant/585-spring_1.json b/public/images/pokemon/variant/585-spring_1.json deleted file mode 100644 index 991403fbb72..00000000000 --- a/public/images/pokemon/variant/585-spring_1.json +++ /dev/null @@ -1,3044 +0,0 @@ -{ - "textures": [ - { - "image": "585-spring_1.png", - "format": "RGBA8888", - "size": { - "w": 195, - "h": 195 - }, - "scale": 1, - "frames": [ - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 34, - "h": 50 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 34, - "h": 50 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 32, - "h": 50 - }, - "frame": { - "x": 34, - "y": 50, - "w": 32, - "h": 50 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 32, - "h": 50 - }, - "frame": { - "x": 34, - "y": 50, - "w": 32, - "h": 50 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 32, - "h": 50 - }, - "frame": { - "x": 136, - "y": 48, - "w": 32, - "h": 50 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 32, - "h": 50 - }, - "frame": { - "x": 136, - "y": 48, - "w": 32, - "h": 50 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 32, - "h": 50 - }, - "frame": { - "x": 100, - "y": 95, - "w": 32, - "h": 50 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 32, - "h": 50 - }, - "frame": { - "x": 100, - "y": 95, - "w": 32, - "h": 50 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 66, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 66, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 128, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 128, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 128, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 128, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 159, - "y": 98, - "w": 31, - "h": 50 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 159, - "y": 98, - "w": 31, - "h": 50 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:23cc18b62ef0b3cf727c8495ccc3a48d:365d365196678a0a4e9440fb5e5291d6:d9f005b1786551ef1a4ec5614dcbbfd1$" - } -} \ No newline at end of file diff --git a/public/images/pokemon/variant/585-spring_1.png b/public/images/pokemon/variant/585-spring_1.png deleted file mode 100644 index 8d7cbe10c45..00000000000 Binary files a/public/images/pokemon/variant/585-spring_1.png and /dev/null differ diff --git a/public/images/pokemon/variant/585-summer_1.json b/public/images/pokemon/variant/585-summer_1.json deleted file mode 100644 index 3205f992b9d..00000000000 --- a/public/images/pokemon/variant/585-summer_1.json +++ /dev/null @@ -1,3044 +0,0 @@ -{ - "textures": [ - { - "image": "585-summer_1.png", - "format": "RGBA8888", - "size": { - "w": 195, - "h": 195 - }, - "scale": 1, - "frames": [ - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 34, - "h": 50 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 34, - "h": 50 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 32, - "h": 50 - }, - "frame": { - "x": 34, - "y": 50, - "w": 32, - "h": 50 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 32, - "h": 50 - }, - "frame": { - "x": 34, - "y": 50, - "w": 32, - "h": 50 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 32, - "h": 50 - }, - "frame": { - "x": 136, - "y": 48, - "w": 32, - "h": 50 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 32, - "h": 50 - }, - "frame": { - "x": 136, - "y": 48, - "w": 32, - "h": 50 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 32, - "h": 50 - }, - "frame": { - "x": 100, - "y": 95, - "w": 32, - "h": 50 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 32, - "h": 50 - }, - "frame": { - "x": 100, - "y": 95, - "w": 32, - "h": 50 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 66, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 66, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 128, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 128, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 128, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 128, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 159, - "y": 98, - "w": 31, - "h": 50 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 159, - "y": 98, - "w": 31, - "h": 50 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:4f8e7854552697b480b552af7c1d0183:e954dc679a09ff9ec6b27dce5650d4be:6dee9c999116e929b40748d359d41e33$" - } -} \ No newline at end of file diff --git a/public/images/pokemon/variant/585-summer_1.png b/public/images/pokemon/variant/585-summer_1.png deleted file mode 100644 index 71646cca31c..00000000000 Binary files a/public/images/pokemon/variant/585-summer_1.png and /dev/null differ diff --git a/public/images/pokemon/variant/585-winter_1.json b/public/images/pokemon/variant/585-winter_1.json deleted file mode 100644 index 54dc7476add..00000000000 --- a/public/images/pokemon/variant/585-winter_1.json +++ /dev/null @@ -1,3044 +0,0 @@ -{ - "textures": [ - { - "image": "585-winter_1.png", - "format": "RGBA8888", - "size": { - "w": 195, - "h": 195 - }, - "scale": 1, - "frames": [ - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 50 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 34, - "h": 50 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 34, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 34, - "h": 50 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 33, - "y": 100, - "w": 33, - "h": 50 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 33, - "h": 50 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 32, - "h": 50 - }, - "frame": { - "x": 34, - "y": 50, - "w": 32, - "h": 50 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 32, - "h": 50 - }, - "frame": { - "x": 34, - "y": 50, - "w": 32, - "h": 50 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 49 - }, - "frame": { - "x": 67, - "y": 0, - "w": 35, - "h": 49 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 48 - }, - "frame": { - "x": 102, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 137, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 47 - }, - "frame": { - "x": 102, - "y": 48, - "w": 34, - "h": 47 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 33, - "h": 49 - }, - "frame": { - "x": 67, - "y": 49, - "w": 33, - "h": 49 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 32, - "h": 50 - }, - "frame": { - "x": 136, - "y": 48, - "w": 32, - "h": 50 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 32, - "h": 50 - }, - "frame": { - "x": 136, - "y": 48, - "w": 32, - "h": 50 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 32, - "h": 50 - }, - "frame": { - "x": 100, - "y": 95, - "w": 32, - "h": 50 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 32, - "h": 50 - }, - "frame": { - "x": 100, - "y": 95, - "w": 32, - "h": 50 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 66, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 66, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 97, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 128, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 128, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 128, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 128, - "y": 145, - "w": 31, - "h": 50 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 159, - "y": 98, - "w": 31, - "h": 50 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 31, - "h": 50 - }, - "frame": { - "x": 159, - "y": 98, - "w": 31, - "h": 50 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:9bd843fda4a1d50b9c8f6d76bca812d5:666a2e9254f313a4482e94557b5a4abd:9fc9970f730df71c344de29f38668796$" - } -} \ No newline at end of file diff --git a/public/images/pokemon/variant/585-winter_1.png b/public/images/pokemon/variant/585-winter_1.png deleted file mode 100644 index 4b4a179e8a4..00000000000 Binary files a/public/images/pokemon/variant/585-winter_1.png and /dev/null differ diff --git a/public/images/pokemon/variant/586-autumn.json b/public/images/pokemon/variant/586-autumn.json deleted file mode 100644 index 9345bdee6c4..00000000000 --- a/public/images/pokemon/variant/586-autumn.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "0": { - "422110": "9d4f62", - "4a0808": "7f334a", - "dec56b": "ffd5f6", - "633121": "c66479", - "7b5231": "d98997", - "a57b4a": "e1b2d7", - "de8c29": "ffecfb" - } -} \ No newline at end of file diff --git a/public/images/pokemon/variant/586-spring.json b/public/images/pokemon/variant/586-spring.json deleted file mode 100644 index 2518667eb20..00000000000 --- a/public/images/pokemon/variant/586-spring.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "0": { - "4a1008": "7f334a", - "dec56b": "ffd5f6", - "633a21": "c66479", - "422119": "9d4f62", - "de9429": "ffecfb", - "7b5a31": "d98997", - "a57b4a": "e1b2d7" - } -} \ No newline at end of file diff --git a/public/images/pokemon/variant/586-summer.json b/public/images/pokemon/variant/586-summer.json deleted file mode 100644 index 0f89496c1fc..00000000000 --- a/public/images/pokemon/variant/586-summer.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "0": { - "193a29": "314a29", - "088c42": "4a8b4a", - "195a31": "416a39", - "dec56b": "ffd5f6", - "4a1008": "783046", - "422119": "944b5c", - "633a21": "bb5f73", - "7b5a31": "cc818e", - "a57b4a": "e1b2d7", - "de9429": "ffecfb", - "311010": "582333" - } -} \ No newline at end of file diff --git a/public/images/pokemon/variant/586-winter.json b/public/images/pokemon/variant/586-winter.json deleted file mode 100644 index 352a4c57920..00000000000 --- a/public/images/pokemon/variant/586-winter.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "0": { - "6b6b6b": "cf9bc4", - "424a42": "b184a8", - "ffffff": "ffd5f6", - "adadad": "e1b2d7", - "4a1008": "7f334a", - "dec56b": "ffecfb", - "422119": "9d4f62", - "7b5a31": "d98997", - "633a21": "c66479", - "a57b4a": "e1b2d7", - "de9429": "ffecfb" - } -} \ No newline at end of file diff --git a/public/images/pokemon/variant/_masterlist.json b/public/images/pokemon/variant/_masterlist.json index 8069cd354ef..8baf50791e2 100644 --- a/public/images/pokemon/variant/_masterlist.json +++ b/public/images/pokemon/variant/_masterlist.json @@ -515,14 +515,6 @@ "577": [1, 1, 1], "578": [1, 1, 1], "579": [1, 1, 1], - "585-autumn": [2, 0, 0], - "585-spring": [2, 0, 0], - "585-summer": [2, 0, 0], - "585-winter": [2, 0, 0], - "586-autumn": [1, 0, 0], - "586-spring": [1, 0, 0], - "586-summer": [1, 0, 0], - "586-winter": [1, 0, 0], "587": [0, 1, 1], "588": [0, 1, 1], "589": [0, 1, 1], @@ -1521,14 +1513,6 @@ "577": [1, 1, 1], "578": [1, 1, 1], "579": [1, 1, 1], - "585-autumn": [2, 0, 0], - "585-spring": [2, 0, 0], - "585-summer": [1, 0, 0], - "585-winter": [2, 0, 0], - "586-autumn": [1, 0, 0], - "586-spring": [1, 0, 0], - "586-summer": [1, 0, 0], - "586-winter": [1, 0, 0], "587": [0, 1, 1], "588": [0, 1, 1], "589": [0, 1, 1], diff --git a/public/images/pokemon/variant/back/585-autumn_1.json b/public/images/pokemon/variant/back/585-autumn_1.json deleted file mode 100644 index 383f34db8c2..00000000000 --- a/public/images/pokemon/variant/back/585-autumn_1.json +++ /dev/null @@ -1,3044 +0,0 @@ -{ - "textures": [ - { - "image": "585-autumn_1.png", - "format": "RGBA8888", - "size": { - "w": 185, - "h": 185 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 50 - }, - "frame": { - "x": 0, - "y": 48, - "w": 30, - "h": 50 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 50 - }, - "frame": { - "x": 0, - "y": 48, - "w": 30, - "h": 50 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 50 - }, - "frame": { - "x": 0, - "y": 48, - "w": 30, - "h": 50 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 50 - }, - "frame": { - "x": 0, - "y": 48, - "w": 30, - "h": 50 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 50 - }, - "frame": { - "x": 0, - "y": 48, - "w": 30, - "h": 50 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 50 - }, - "frame": { - "x": 0, - "y": 48, - "w": 30, - "h": 50 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 50 - }, - "frame": { - "x": 30, - "y": 49, - "w": 30, - "h": 50 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 50 - }, - "frame": { - "x": 30, - "y": 49, - "w": 30, - "h": 50 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 50 - }, - "frame": { - "x": 30, - "y": 49, - "w": 30, - "h": 50 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 50 - }, - "frame": { - "x": 30, - "y": 49, - "w": 30, - "h": 50 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 155, - "y": 50, - "w": 30, - "h": 51 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 155, - "y": 50, - "w": 30, - "h": 51 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 0, - "y": 98, - "w": 30, - "h": 51 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 0, - "y": 98, - "w": 30, - "h": 51 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 0, - "y": 98, - "w": 30, - "h": 51 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 0, - "y": 98, - "w": 30, - "h": 51 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 0, - "y": 98, - "w": 30, - "h": 51 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 0, - "y": 98, - "w": 30, - "h": 51 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 0, - "y": 98, - "w": 30, - "h": 51 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 0, - "y": 98, - "w": 30, - "h": 51 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 0, - "y": 98, - "w": 30, - "h": 51 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 0, - "y": 98, - "w": 30, - "h": 51 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 30, - "y": 99, - "w": 30, - "h": 51 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 30, - "y": 99, - "w": 30, - "h": 51 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 100, - "w": 31, - "h": 51 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 100, - "w": 31, - "h": 51 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 91, - "y": 101, - "w": 31, - "h": 51 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 91, - "y": 101, - "w": 31, - "h": 51 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 122, - "y": 101, - "w": 31, - "h": 51 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 122, - "y": 101, - "w": 31, - "h": 51 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 153, - "y": 101, - "w": 31, - "h": 51 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 153, - "y": 101, - "w": 31, - "h": 51 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:c49413af05ed6da998500793caadcb9e:881a2dc2dec7192eb5dd05f58b31eb4e:c7e45605bee4014fbf86a5b3a10eafef$" - } -} \ No newline at end of file diff --git a/public/images/pokemon/variant/back/585-autumn_1.png b/public/images/pokemon/variant/back/585-autumn_1.png deleted file mode 100644 index 49579e9b3f8..00000000000 Binary files a/public/images/pokemon/variant/back/585-autumn_1.png and /dev/null differ diff --git a/public/images/pokemon/variant/back/585-spring_1.json b/public/images/pokemon/variant/back/585-spring_1.json deleted file mode 100644 index 219842b5f58..00000000000 --- a/public/images/pokemon/variant/back/585-spring_1.json +++ /dev/null @@ -1,3044 +0,0 @@ -{ - "textures": [ - { - "image": "585-spring_1.png", - "format": "RGBA8888", - "size": { - "w": 185, - "h": 185 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 50 - }, - "frame": { - "x": 0, - "y": 48, - "w": 30, - "h": 50 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 50 - }, - "frame": { - "x": 0, - "y": 48, - "w": 30, - "h": 50 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 50 - }, - "frame": { - "x": 0, - "y": 48, - "w": 30, - "h": 50 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 50 - }, - "frame": { - "x": 0, - "y": 48, - "w": 30, - "h": 50 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 50 - }, - "frame": { - "x": 0, - "y": 48, - "w": 30, - "h": 50 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 50 - }, - "frame": { - "x": 0, - "y": 48, - "w": 30, - "h": 50 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 50 - }, - "frame": { - "x": 30, - "y": 49, - "w": 30, - "h": 50 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 50 - }, - "frame": { - "x": 30, - "y": 49, - "w": 30, - "h": 50 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 50 - }, - "frame": { - "x": 30, - "y": 49, - "w": 30, - "h": 50 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 50 - }, - "frame": { - "x": 30, - "y": 49, - "w": 30, - "h": 50 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 155, - "y": 50, - "w": 30, - "h": 51 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 155, - "y": 50, - "w": 30, - "h": 51 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 0, - "y": 98, - "w": 30, - "h": 51 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 0, - "y": 98, - "w": 30, - "h": 51 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 0, - "y": 98, - "w": 30, - "h": 51 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 0, - "y": 98, - "w": 30, - "h": 51 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 0, - "y": 98, - "w": 30, - "h": 51 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 0, - "y": 98, - "w": 30, - "h": 51 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 0, - "y": 98, - "w": 30, - "h": 51 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 0, - "y": 98, - "w": 30, - "h": 51 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 0, - "y": 98, - "w": 30, - "h": 51 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 0, - "y": 98, - "w": 30, - "h": 51 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 30, - "y": 99, - "w": 30, - "h": 51 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 30, - "y": 99, - "w": 30, - "h": 51 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 100, - "w": 31, - "h": 51 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 100, - "w": 31, - "h": 51 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 91, - "y": 101, - "w": 31, - "h": 51 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 91, - "y": 101, - "w": 31, - "h": 51 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 122, - "y": 101, - "w": 31, - "h": 51 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 122, - "y": 101, - "w": 31, - "h": 51 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 153, - "y": 101, - "w": 31, - "h": 51 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 153, - "y": 101, - "w": 31, - "h": 51 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:2ab8bbf5cb2c6971847536eb2066eab3:d66b5d7c0285526a8d30873611f03457:d9f005b1786551ef1a4ec5614dcbbfd1$" - } -} \ No newline at end of file diff --git a/public/images/pokemon/variant/back/585-spring_1.png b/public/images/pokemon/variant/back/585-spring_1.png deleted file mode 100644 index 26c9d9cd408..00000000000 Binary files a/public/images/pokemon/variant/back/585-spring_1.png and /dev/null differ diff --git a/public/images/pokemon/variant/back/585-summer.json b/public/images/pokemon/variant/back/585-summer.json deleted file mode 100644 index 6942da9df8d..00000000000 --- a/public/images/pokemon/variant/back/585-summer.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "0": { - "315231": "314a29", - "317b42": "416a39", - "42b542": "4a8b4a", - "ce9c08": "d89ca6", - "7b5210": "c16b7d", - "ffde52": "ffffff", - "bda58c": "d89ca6", - "9c7b5a": "c16b7d", - "f7efc5": "ffd5f6", - "524219": "783046", - "313131": "783046", - "525252": "c16b7d" - } -} \ No newline at end of file diff --git a/public/images/pokemon/variant/back/585-winter_1.json b/public/images/pokemon/variant/back/585-winter_1.json deleted file mode 100644 index da0b49a548c..00000000000 --- a/public/images/pokemon/variant/back/585-winter_1.json +++ /dev/null @@ -1,3044 +0,0 @@ -{ - "textures": [ - { - "image": "585-winter_1.png", - "format": "RGBA8888", - "size": { - "w": 185, - "h": 185 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 48 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 49 - }, - "frame": { - "x": 68, - "y": 0, - "w": 34, - "h": 49 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 102, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 50 - }, - "frame": { - "x": 135, - "y": 0, - "w": 33, - "h": 50 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 50 - }, - "frame": { - "x": 0, - "y": 48, - "w": 30, - "h": 50 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 50 - }, - "frame": { - "x": 0, - "y": 48, - "w": 30, - "h": 50 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 50 - }, - "frame": { - "x": 0, - "y": 48, - "w": 30, - "h": 50 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 50 - }, - "frame": { - "x": 0, - "y": 48, - "w": 30, - "h": 50 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 50 - }, - "frame": { - "x": 0, - "y": 48, - "w": 30, - "h": 50 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 50 - }, - "frame": { - "x": 0, - "y": 48, - "w": 30, - "h": 50 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 50 - }, - "frame": { - "x": 30, - "y": 49, - "w": 30, - "h": 50 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 50 - }, - "frame": { - "x": 30, - "y": 49, - "w": 30, - "h": 50 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 50 - }, - "frame": { - "x": 30, - "y": 49, - "w": 30, - "h": 50 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 50 - }, - "frame": { - "x": 30, - "y": 49, - "w": 30, - "h": 50 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 49, - "w": 31, - "h": 51 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 91, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 51 - }, - "frame": { - "x": 123, - "y": 50, - "w": 32, - "h": 51 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 155, - "y": 50, - "w": 30, - "h": 51 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 155, - "y": 50, - "w": 30, - "h": 51 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 0, - "y": 98, - "w": 30, - "h": 51 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 0, - "y": 98, - "w": 30, - "h": 51 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 0, - "y": 98, - "w": 30, - "h": 51 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 0, - "y": 98, - "w": 30, - "h": 51 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 0, - "y": 98, - "w": 30, - "h": 51 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 0, - "y": 98, - "w": 30, - "h": 51 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 0, - "y": 98, - "w": 30, - "h": 51 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 0, - "y": 98, - "w": 30, - "h": 51 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 0, - "y": 98, - "w": 30, - "h": 51 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 0, - "y": 98, - "w": 30, - "h": 51 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 30, - "y": 99, - "w": 30, - "h": 51 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 30, - "y": 99, - "w": 30, - "h": 51 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 100, - "w": 31, - "h": 51 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 60, - "y": 100, - "w": 31, - "h": 51 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 91, - "y": 101, - "w": 31, - "h": 51 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 91, - "y": 101, - "w": 31, - "h": 51 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 122, - "y": 101, - "w": 31, - "h": 51 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 122, - "y": 101, - "w": 31, - "h": 51 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 153, - "y": 101, - "w": 31, - "h": 51 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 51 - }, - "frame": { - "x": 153, - "y": 101, - "w": 31, - "h": 51 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:c66354b4a5aadc73a00b2d5946887ffb:19cc871a12b36d15034bf4ae898ec955:9fc9970f730df71c344de29f38668796$" - } -} \ No newline at end of file diff --git a/public/images/pokemon/variant/back/585-winter_1.png b/public/images/pokemon/variant/back/585-winter_1.png deleted file mode 100644 index 89421e43303..00000000000 Binary files a/public/images/pokemon/variant/back/585-winter_1.png and /dev/null differ diff --git a/public/images/pokemon/variant/back/586-autumn.json b/public/images/pokemon/variant/back/586-autumn.json deleted file mode 100644 index fea1b869102..00000000000 --- a/public/images/pokemon/variant/back/586-autumn.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "0": { - "7b5231": "d98997", - "422110": "9d4f62", - "633121": "c66479", - "de8c29": "ffecfb", - "a57b4a": "e1b2d7", - "dec56b": "ffd5f6" - } -} \ No newline at end of file diff --git a/public/images/pokemon/variant/back/586-spring.json b/public/images/pokemon/variant/back/586-spring.json deleted file mode 100644 index 0b060156d33..00000000000 --- a/public/images/pokemon/variant/back/586-spring.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "0": { - "311010": "2a1418", - "731931": "5e263e", - "4a1008": "7f334a", - "633a21": "c66479", - "ce4263": "c66479", - "dec56b": "ffd5f6", - "422119": "9d4f62", - "7b5a31": "d98997", - "de9429": "ffecfb", - "dedede": "c8c8c8", - "a57b4a": "e1b2d7" - } -} \ No newline at end of file diff --git a/public/images/pokemon/variant/back/586-summer.json b/public/images/pokemon/variant/back/586-summer.json deleted file mode 100644 index daafade5616..00000000000 --- a/public/images/pokemon/variant/back/586-summer.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "0": { - "193a29": "314a29", - "195a31": "416a39", - "088c42": "4a8b4a", - "4a1008": "7f334a", - "7b5a31": "d98997", - "422119": "9d4f62", - "633a21": "c66479", - "de9429": "ffecfb", - "a57b4a": "e1b2d7", - "dec56b": "ffd5f6" - } -} \ No newline at end of file diff --git a/public/images/pokemon/variant/back/586-winter.json b/public/images/pokemon/variant/back/586-winter.json deleted file mode 100644 index 6a9c9ed7400..00000000000 --- a/public/images/pokemon/variant/back/586-winter.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "0": { - "424a42": "99648f", - "ffffff": "ffd5f6", - "6b6b6b": "b184a8", - "adadad": "e1b2d7", - "4a1008": "7f334a", - "dec56b": "ffecfb", - "633a21": "c66479", - "422119": "9d4f62", - "7b5a31": "d98997", - "de9429": "ffecfb", - "a57b4a": "e1b2d7" - } -} \ No newline at end of file diff --git a/public/images/ui/champion_ribbon_bronze.png b/public/images/ui/champion_ribbon_bronze.png index d30431fa015..4bd1cb8ea2d 100644 Binary files a/public/images/ui/champion_ribbon_bronze.png and b/public/images/ui/champion_ribbon_bronze.png differ diff --git a/public/images/ui/champion_ribbon_diamond.png b/public/images/ui/champion_ribbon_diamond.png index 0d469640529..207ade56c19 100644 Binary files a/public/images/ui/champion_ribbon_diamond.png and b/public/images/ui/champion_ribbon_diamond.png differ diff --git a/public/images/ui/champion_ribbon_silver.png b/public/images/ui/champion_ribbon_silver.png index 9cf7c40552f..52cde028406 100644 Binary files a/public/images/ui/champion_ribbon_silver.png and b/public/images/ui/champion_ribbon_silver.png differ diff --git a/public/images/ui/common_egg.png b/public/images/ui/common_egg.png new file mode 100644 index 00000000000..c449611d532 Binary files /dev/null and b/public/images/ui/common_egg.png differ diff --git a/public/images/ui/legacy/champion_ribbon_bronze.png b/public/images/ui/legacy/champion_ribbon_bronze.png index d30431fa015..4bd1cb8ea2d 100644 Binary files a/public/images/ui/legacy/champion_ribbon_bronze.png and b/public/images/ui/legacy/champion_ribbon_bronze.png differ diff --git a/public/images/ui/legacy/champion_ribbon_diamond.png b/public/images/ui/legacy/champion_ribbon_diamond.png index 0d469640529..207ade56c19 100644 Binary files a/public/images/ui/legacy/champion_ribbon_diamond.png and b/public/images/ui/legacy/champion_ribbon_diamond.png differ diff --git a/public/images/ui/legacy/champion_ribbon_silver.png b/public/images/ui/legacy/champion_ribbon_silver.png index 9cf7c40552f..52cde028406 100644 Binary files a/public/images/ui/legacy/champion_ribbon_silver.png and b/public/images/ui/legacy/champion_ribbon_silver.png differ diff --git a/public/images/ui/legacy/common_egg.png b/public/images/ui/legacy/common_egg.png new file mode 100644 index 00000000000..c449611d532 Binary files /dev/null and b/public/images/ui/legacy/common_egg.png differ diff --git a/public/images/ui/legacy/mystery_egg.png b/public/images/ui/legacy/mystery_egg.png deleted file mode 100644 index 83ad626da7e..00000000000 Binary files a/public/images/ui/legacy/mystery_egg.png and /dev/null differ diff --git a/public/images/ui/legacy/numbers_alt.png b/public/images/ui/legacy/numbers_alt.png deleted file mode 100644 index fb510465471..00000000000 Binary files a/public/images/ui/legacy/numbers_alt.png and /dev/null differ diff --git a/public/images/ui/legacy/numbers_red_alt.png b/public/images/ui/legacy/numbers_red_alt.png deleted file mode 100644 index d9edb0468d8..00000000000 Binary files a/public/images/ui/legacy/numbers_red_alt.png and /dev/null differ diff --git a/public/images/ui/legacy/overlay_lv.png b/public/images/ui/legacy/overlay_lv.png deleted file mode 100644 index fdcbb1c7082..00000000000 Binary files a/public/images/ui/legacy/overlay_lv.png and /dev/null differ diff --git a/public/images/ui/legacy/overlay_lv_alt.png b/public/images/ui/legacy/overlay_lv_alt.png deleted file mode 100644 index 92ec684bf75..00000000000 Binary files a/public/images/ui/legacy/overlay_lv_alt.png and /dev/null differ diff --git a/public/images/ui/legacy/party_slot_hp_bar.png b/public/images/ui/legacy/party_slot_hp_bar.png index 6a37002744c..7ec53ae806b 100644 Binary files a/public/images/ui/legacy/party_slot_hp_bar.png and b/public/images/ui/legacy/party_slot_hp_bar.png differ diff --git a/public/images/ui/legacy/party_slot_overlay_lv_alt.png b/public/images/ui/legacy/party_slot_overlay_lv_alt.png deleted file mode 100644 index 7aa9a590a13..00000000000 Binary files a/public/images/ui/legacy/party_slot_overlay_lv_alt.png and /dev/null differ diff --git a/public/images/ui/legacy/pbinfo_enemy_boss.png b/public/images/ui/legacy/pbinfo_enemy_boss.png index 98b2f09f941..20eb74c59b3 100644 Binary files a/public/images/ui/legacy/pbinfo_enemy_boss.png and b/public/images/ui/legacy/pbinfo_enemy_boss.png differ diff --git a/public/images/ui/legacy/pbinfo_enemy_mini.png b/public/images/ui/legacy/pbinfo_enemy_mini.png index c1c002a4b21..7beddd98d55 100644 Binary files a/public/images/ui/legacy/pbinfo_enemy_mini.png and b/public/images/ui/legacy/pbinfo_enemy_mini.png differ diff --git a/public/images/ui/legacy/pbinfo_player.png b/public/images/ui/legacy/pbinfo_player.png index 60c92f886aa..f9e16a9aa0c 100644 Binary files a/public/images/ui/legacy/pbinfo_player.png and b/public/images/ui/legacy/pbinfo_player.png differ diff --git a/public/images/ui/legacy/pbinfo_player_mini.png b/public/images/ui/legacy/pbinfo_player_mini.png index 120e9592ab9..183db0d44f9 100644 Binary files a/public/images/ui/legacy/pbinfo_player_mini.png and b/public/images/ui/legacy/pbinfo_player_mini.png differ diff --git a/public/images/ui/legacy/pbinfo_stat.png b/public/images/ui/legacy/pbinfo_stat.png deleted file mode 100644 index 25c94f9a807..00000000000 Binary files a/public/images/ui/legacy/pbinfo_stat.png and /dev/null differ diff --git a/public/images/ui/legacy/pokedex_summary_bg.png b/public/images/ui/legacy/pokedex_summary_bg.png index 0f8fed843c9..62369eaa248 100644 Binary files a/public/images/ui/legacy/pokedex_summary_bg.png and b/public/images/ui/legacy/pokedex_summary_bg.png differ diff --git a/public/images/ui/legacy/starter_select_bg.png b/public/images/ui/legacy/starter_select_bg.png index 501e892969e..09d21d4a630 100644 Binary files a/public/images/ui/legacy/starter_select_bg.png and b/public/images/ui/legacy/starter_select_bg.png differ diff --git a/public/images/ui/legacy/summary_bg.png b/public/images/ui/legacy/summary_bg.png index 668a7438bf0..b08bd406a81 100644 Binary files a/public/images/ui/legacy/summary_bg.png and b/public/images/ui/legacy/summary_bg.png differ diff --git a/public/images/ui/legacy/summary_moves.png b/public/images/ui/legacy/summary_moves.png index ab909588160..abb499fdbb0 100644 Binary files a/public/images/ui/legacy/summary_moves.png and b/public/images/ui/legacy/summary_moves.png differ diff --git a/public/images/ui/legacy/summary_moves_effect.png b/public/images/ui/legacy/summary_moves_effect.png index 61567c9749b..f12e7e523b8 100644 Binary files a/public/images/ui/legacy/summary_moves_effect.png and b/public/images/ui/legacy/summary_moves_effect.png differ diff --git a/public/images/ui/legacy/summary_profile.png b/public/images/ui/legacy/summary_profile.png index d8cfebb000e..e2c678a3206 100644 Binary files a/public/images/ui/legacy/summary_profile.png and b/public/images/ui/legacy/summary_profile.png differ diff --git a/public/images/ui/legacy/summary_profile_ability.png b/public/images/ui/legacy/summary_profile_ability.png deleted file mode 100644 index f839a6249f8..00000000000 Binary files a/public/images/ui/legacy/summary_profile_ability.png and /dev/null differ diff --git a/public/images/ui/legacy/summary_profile_passive.png b/public/images/ui/legacy/summary_profile_passive.png deleted file mode 100644 index 1ff9ad8e09a..00000000000 Binary files a/public/images/ui/legacy/summary_profile_passive.png and /dev/null differ diff --git a/public/images/ui/legacy/summary_stats.png b/public/images/ui/legacy/summary_stats.png index 1da361f6157..773661cce07 100644 Binary files a/public/images/ui/legacy/summary_stats.png and b/public/images/ui/legacy/summary_stats.png differ diff --git a/public/images/ui/legacy/text_images/ca/battle_ui/overlay_exp_label_ca.png b/public/images/ui/legacy/text_images/ca/battle_ui/overlay_exp_label_ca.png new file mode 100644 index 00000000000..acb04a84a31 Binary files /dev/null and b/public/images/ui/legacy/text_images/ca/battle_ui/overlay_exp_label_ca.png differ diff --git a/public/images/ui/legacy/text_images/ca/battle_ui/overlay_hp_label_boss_ca.png b/public/images/ui/legacy/text_images/ca/battle_ui/overlay_hp_label_boss_ca.png new file mode 100644 index 00000000000..283d63fb235 Binary files /dev/null and b/public/images/ui/legacy/text_images/ca/battle_ui/overlay_hp_label_boss_ca.png differ diff --git a/public/images/ui/legacy/text_images/ca/battle_ui/overlay_hp_label_ca.png b/public/images/ui/legacy/text_images/ca/battle_ui/overlay_hp_label_ca.png new file mode 100644 index 00000000000..4f388b70a75 Binary files /dev/null and b/public/images/ui/legacy/text_images/ca/battle_ui/overlay_hp_label_ca.png differ diff --git a/public/images/ui/legacy/text_images/ca/battle_ui/overlay_lv_ca.png b/public/images/ui/legacy/text_images/ca/battle_ui/overlay_lv_ca.png new file mode 100644 index 00000000000..7fdf26388bf Binary files /dev/null and b/public/images/ui/legacy/text_images/ca/battle_ui/overlay_lv_ca.png differ diff --git a/public/images/ui/legacy/text_images/ca/battle_ui/pbinfo_stat_ca.json b/public/images/ui/legacy/text_images/ca/battle_ui/pbinfo_stat_ca.json new file mode 100644 index 00000000000..4bae82011ea --- /dev/null +++ b/public/images/ui/legacy/text_images/ca/battle_ui/pbinfo_stat_ca.json @@ -0,0 +1,209 @@ +{ + "textures": [ + { + "image": "pbinfo_stat_ca.png", + "format": "RGBA8888", + "size": { + "w": 112, + "h": 8 + }, + "scale": 1, + "frames": [ + { + "filename": "SPATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 18, + "h": 8 + }, + "frame": { + "x": 0, + "y": 0, + "w": 18, + "h": 8 + } + }, + { + "filename": "SPDEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 18, + "h": 8 + }, + "frame": { + "x": 18, + "y": 0, + "w": 18, + "h": 8 + } + }, + { + "filename": "CRIT", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 17, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 16, + "h": 8 + }, + "frame": { + "x": 36, + "y": 0, + "w": 16, + "h": 8 + } + }, + { + "filename": "ACC", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 12, + "h": 8 + }, + "frame": { + "x": 52, + "y": 0, + "w": 12, + "h": 8 + } + }, + { + "filename": "ATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 12, + "h": 8 + }, + "frame": { + "x": 64, + "y": 0, + "w": 12, + "h": 8 + } + }, + { + "filename": "DEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 12, + "h": 8 + }, + "frame": { + "x": 76, + "y": 0, + "w": 12, + "h": 8 + } + }, + { + "filename": "EVA", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 12, + "h": 8 + }, + "frame": { + "x": 88, + "y": 0, + "w": 12, + "h": 8 + } + }, + { + "filename": "SPD", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 12, + "h": 8 + }, + "frame": { + "x": 100, + "y": 0, + "w": 12, + "h": 8 + } + }, + { + "filename": "HP", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 9, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 8, + "h": 8 + }, + "frame": { + "x": 112, + "y": 0, + "w": 8, + "h": 8 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:40d30205ce8efd40dfa86cd11b0491d6:7076db6ed74199dcfb38fc8cd4d4a0e8:05882267d3999884e0491134e98b1b53$" + } +} diff --git a/public/images/ui/legacy/text_images/ca/battle_ui/pbinfo_stat_ca.png b/public/images/ui/legacy/text_images/ca/battle_ui/pbinfo_stat_ca.png new file mode 100644 index 00000000000..a6ccf90c284 Binary files /dev/null and b/public/images/ui/legacy/text_images/ca/battle_ui/pbinfo_stat_ca.png differ diff --git a/public/images/ui/legacy/text_images/ca/party_ui/party_slot_overlay_hp_ca.png b/public/images/ui/legacy/text_images/ca/party_ui/party_slot_overlay_hp_ca.png new file mode 100644 index 00000000000..981d8573aca Binary files /dev/null and b/public/images/ui/legacy/text_images/ca/party_ui/party_slot_overlay_hp_ca.png differ diff --git a/public/images/ui/legacy/text_images/ca/party_ui/party_slot_overlay_lv_ca.png b/public/images/ui/legacy/text_images/ca/party_ui/party_slot_overlay_lv_ca.png new file mode 100644 index 00000000000..512db34fa85 Binary files /dev/null and b/public/images/ui/legacy/text_images/ca/party_ui/party_slot_overlay_lv_ca.png differ diff --git a/public/images/ui/legacy/text_images/ca/summary/summary_dexnb_label_ca.png b/public/images/ui/legacy/text_images/ca/summary/summary_dexnb_label_ca.png new file mode 100644 index 00000000000..a457468d8d0 Binary files /dev/null and b/public/images/ui/legacy/text_images/ca/summary/summary_dexnb_label_ca.png differ diff --git a/public/images/ui/legacy/text_images/ca/summary/summary_dexnb_label_overlay_shiny_ca.png b/public/images/ui/legacy/text_images/ca/summary/summary_dexnb_label_overlay_shiny_ca.png new file mode 100644 index 00000000000..3277a28a59b Binary files /dev/null and b/public/images/ui/legacy/text_images/ca/summary/summary_dexnb_label_overlay_shiny_ca.png differ diff --git a/public/images/ui/legacy/text_images/ca/summary/summary_moves_descriptions_title_ca.png b/public/images/ui/legacy/text_images/ca/summary/summary_moves_descriptions_title_ca.png new file mode 100644 index 00000000000..a37aad953cc Binary files /dev/null and b/public/images/ui/legacy/text_images/ca/summary/summary_moves_descriptions_title_ca.png differ diff --git a/public/images/ui/legacy/text_images/ca/summary/summary_moves_effect_title_ca.png b/public/images/ui/legacy/text_images/ca/summary/summary_moves_effect_title_ca.png new file mode 100644 index 00000000000..ca66436eca6 Binary files /dev/null and b/public/images/ui/legacy/text_images/ca/summary/summary_moves_effect_title_ca.png differ diff --git a/public/images/ui/legacy/text_images/ca/summary/summary_moves_moves_title_ca.png b/public/images/ui/legacy/text_images/ca/summary/summary_moves_moves_title_ca.png new file mode 100644 index 00000000000..71a6889da53 Binary files /dev/null and b/public/images/ui/legacy/text_images/ca/summary/summary_moves_moves_title_ca.png differ diff --git a/public/images/ui/legacy/summary_moves_overlay_pp.png b/public/images/ui/legacy/text_images/ca/summary/summary_moves_overlay_pp_ca.png similarity index 100% rename from public/images/ui/legacy/summary_moves_overlay_pp.png rename to public/images/ui/legacy/text_images/ca/summary/summary_moves_overlay_pp_ca.png diff --git a/public/images/ui/legacy/text_images/ca/summary/summary_profile_ability_ca.png b/public/images/ui/legacy/text_images/ca/summary/summary_profile_ability_ca.png new file mode 100644 index 00000000000..2d9e8ac317d Binary files /dev/null and b/public/images/ui/legacy/text_images/ca/summary/summary_profile_ability_ca.png differ diff --git a/public/images/ui/legacy/text_images/ca/summary/summary_profile_memo_title_ca.png b/public/images/ui/legacy/text_images/ca/summary/summary_profile_memo_title_ca.png new file mode 100644 index 00000000000..b7ef7c91fc5 Binary files /dev/null and b/public/images/ui/legacy/text_images/ca/summary/summary_profile_memo_title_ca.png differ diff --git a/public/images/ui/legacy/text_images/ca/summary/summary_profile_passive_ca.png b/public/images/ui/legacy/text_images/ca/summary/summary_profile_passive_ca.png new file mode 100644 index 00000000000..a072b663d25 Binary files /dev/null and b/public/images/ui/legacy/text_images/ca/summary/summary_profile_passive_ca.png differ diff --git a/public/images/ui/legacy/text_images/ca/summary/summary_profile_profile_title_ca.png b/public/images/ui/legacy/text_images/ca/summary/summary_profile_profile_title_ca.png new file mode 100644 index 00000000000..a5ed0e3e169 Binary files /dev/null and b/public/images/ui/legacy/text_images/ca/summary/summary_profile_profile_title_ca.png differ diff --git a/public/images/ui/legacy/text_images/ca/summary/summary_stats_exp_title_ca.png b/public/images/ui/legacy/text_images/ca/summary/summary_stats_exp_title_ca.png new file mode 100644 index 00000000000..e7ac7268b54 Binary files /dev/null and b/public/images/ui/legacy/text_images/ca/summary/summary_stats_exp_title_ca.png differ diff --git a/public/images/ui/legacy/text_images/ca/summary/summary_stats_expbar_title_ca.png b/public/images/ui/legacy/text_images/ca/summary/summary_stats_expbar_title_ca.png new file mode 100644 index 00000000000..e9dfb10e5d6 Binary files /dev/null and b/public/images/ui/legacy/text_images/ca/summary/summary_stats_expbar_title_ca.png differ diff --git a/public/images/ui/legacy/text_images/ca/summary/summary_stats_item_title_ca.png b/public/images/ui/legacy/text_images/ca/summary/summary_stats_item_title_ca.png new file mode 100644 index 00000000000..c13189fc816 Binary files /dev/null and b/public/images/ui/legacy/text_images/ca/summary/summary_stats_item_title_ca.png differ diff --git a/public/images/ui/legacy/text_images/ca/summary/summary_stats_stats_title_ca.png b/public/images/ui/legacy/text_images/ca/summary/summary_stats_stats_title_ca.png new file mode 100644 index 00000000000..426848af866 Binary files /dev/null and b/public/images/ui/legacy/text_images/ca/summary/summary_stats_stats_title_ca.png differ diff --git a/public/images/ui/legacy/summary_tabs_1.png b/public/images/ui/legacy/text_images/ca/summary/summary_tabs_1_ca.png similarity index 100% rename from public/images/ui/legacy/summary_tabs_1.png rename to public/images/ui/legacy/text_images/ca/summary/summary_tabs_1_ca.png diff --git a/public/images/ui/legacy/summary_tabs_2.png b/public/images/ui/legacy/text_images/ca/summary/summary_tabs_2_ca.png similarity index 100% rename from public/images/ui/legacy/summary_tabs_2.png rename to public/images/ui/legacy/text_images/ca/summary/summary_tabs_2_ca.png diff --git a/public/images/ui/legacy/summary_tabs_3.png b/public/images/ui/legacy/text_images/ca/summary/summary_tabs_3_ca.png similarity index 100% rename from public/images/ui/legacy/summary_tabs_3.png rename to public/images/ui/legacy/text_images/ca/summary/summary_tabs_3_ca.png diff --git a/public/images/ui/legacy/text_images/da/battle_ui/overlay_exp_label_da.png b/public/images/ui/legacy/text_images/da/battle_ui/overlay_exp_label_da.png new file mode 100644 index 00000000000..4c456fff94e Binary files /dev/null and b/public/images/ui/legacy/text_images/da/battle_ui/overlay_exp_label_da.png differ diff --git a/public/images/ui/legacy/text_images/da/battle_ui/overlay_hp_label_boss_da.png b/public/images/ui/legacy/text_images/da/battle_ui/overlay_hp_label_boss_da.png new file mode 100644 index 00000000000..283d63fb235 Binary files /dev/null and b/public/images/ui/legacy/text_images/da/battle_ui/overlay_hp_label_boss_da.png differ diff --git a/public/images/ui/legacy/text_images/da/battle_ui/overlay_hp_label_da.png b/public/images/ui/legacy/text_images/da/battle_ui/overlay_hp_label_da.png new file mode 100644 index 00000000000..67824c7ee4e Binary files /dev/null and b/public/images/ui/legacy/text_images/da/battle_ui/overlay_hp_label_da.png differ diff --git a/public/images/ui/legacy/text_images/da/battle_ui/overlay_lv_da.png b/public/images/ui/legacy/text_images/da/battle_ui/overlay_lv_da.png new file mode 100644 index 00000000000..ea32ac03ee2 Binary files /dev/null and b/public/images/ui/legacy/text_images/da/battle_ui/overlay_lv_da.png differ diff --git a/public/images/ui/legacy/text_images/da/battle_ui/pbinfo_stat_da.json b/public/images/ui/legacy/text_images/da/battle_ui/pbinfo_stat_da.json new file mode 100644 index 00000000000..eca2a9071ac --- /dev/null +++ b/public/images/ui/legacy/text_images/da/battle_ui/pbinfo_stat_da.json @@ -0,0 +1,209 @@ +{ + "textures": [ + { + "image": "pbinfo_stat_da.png", + "format": "RGBA8888", + "size": { + "w": 112, + "h": 6 + }, + "scale": 1, + "frames": [ + { + "filename": "SPATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 18, + "h": 6 + }, + "frame": { + "x": 0, + "y": 0, + "w": 18, + "h": 6 + } + }, + { + "filename": "SPDEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 18, + "h": 6 + }, + "frame": { + "x": 18, + "y": 0, + "w": 18, + "h": 6 + } + }, + { + "filename": "CRIT", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 17, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 16, + "h": 6 + }, + "frame": { + "x": 36, + "y": 0, + "w": 16, + "h": 6 + } + }, + { + "filename": "ACC", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 52, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "ATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 64, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "DEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 76, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "EVA", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 88, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "SPD", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 100, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "HP", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 9, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 8, + "h": 6 + }, + "frame": { + "x": 112, + "y": 0, + "w": 8, + "h": 6 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:40d30205ce8efd40dfa86cd11b0491d6:7076db6ed74199dcfb38fc8cd4d4a0e8:05882267d3999884e0491134e98b1b53$" + } +} diff --git a/public/images/ui/legacy/text_images/da/battle_ui/pbinfo_stat_da.png b/public/images/ui/legacy/text_images/da/battle_ui/pbinfo_stat_da.png new file mode 100644 index 00000000000..c729e7a2207 Binary files /dev/null and b/public/images/ui/legacy/text_images/da/battle_ui/pbinfo_stat_da.png differ diff --git a/public/images/ui/legacy/text_images/da/party_ui/party_slot_overlay_hp_da.png b/public/images/ui/legacy/text_images/da/party_ui/party_slot_overlay_hp_da.png new file mode 100644 index 00000000000..a78ac090d3b Binary files /dev/null and b/public/images/ui/legacy/text_images/da/party_ui/party_slot_overlay_hp_da.png differ diff --git a/public/images/ui/legacy/party_slot_overlay_lv.png b/public/images/ui/legacy/text_images/da/party_ui/party_slot_overlay_lv_da.png similarity index 100% rename from public/images/ui/legacy/party_slot_overlay_lv.png rename to public/images/ui/legacy/text_images/da/party_ui/party_slot_overlay_lv_da.png diff --git a/public/images/ui/legacy/text_images/da/summary/summary_dexnb_label_da.png b/public/images/ui/legacy/text_images/da/summary/summary_dexnb_label_da.png new file mode 100644 index 00000000000..ef081f493f3 Binary files /dev/null and b/public/images/ui/legacy/text_images/da/summary/summary_dexnb_label_da.png differ diff --git a/public/images/ui/legacy/text_images/da/summary/summary_dexnb_label_overlay_shiny_da.png b/public/images/ui/legacy/text_images/da/summary/summary_dexnb_label_overlay_shiny_da.png new file mode 100644 index 00000000000..92c2412f426 Binary files /dev/null and b/public/images/ui/legacy/text_images/da/summary/summary_dexnb_label_overlay_shiny_da.png differ diff --git a/public/images/ui/legacy/text_images/da/summary/summary_moves_descriptions_title_da.png b/public/images/ui/legacy/text_images/da/summary/summary_moves_descriptions_title_da.png new file mode 100644 index 00000000000..79b16227bfe Binary files /dev/null and b/public/images/ui/legacy/text_images/da/summary/summary_moves_descriptions_title_da.png differ diff --git a/public/images/ui/legacy/text_images/da/summary/summary_moves_effect_title_da.png b/public/images/ui/legacy/text_images/da/summary/summary_moves_effect_title_da.png new file mode 100644 index 00000000000..f2ac04e62c4 Binary files /dev/null and b/public/images/ui/legacy/text_images/da/summary/summary_moves_effect_title_da.png differ diff --git a/public/images/ui/legacy/text_images/da/summary/summary_moves_moves_title_da.png b/public/images/ui/legacy/text_images/da/summary/summary_moves_moves_title_da.png new file mode 100644 index 00000000000..f1732e3e2c0 Binary files /dev/null and b/public/images/ui/legacy/text_images/da/summary/summary_moves_moves_title_da.png differ diff --git a/public/images/ui/legacy/text_images/da/summary/summary_moves_overlay_pp_da.png b/public/images/ui/legacy/text_images/da/summary/summary_moves_overlay_pp_da.png new file mode 100644 index 00000000000..6cc0a2a6831 Binary files /dev/null and b/public/images/ui/legacy/text_images/da/summary/summary_moves_overlay_pp_da.png differ diff --git a/public/images/ui/legacy/text_images/da/summary/summary_profile_ability_da.png b/public/images/ui/legacy/text_images/da/summary/summary_profile_ability_da.png new file mode 100644 index 00000000000..206b65c6cdd Binary files /dev/null and b/public/images/ui/legacy/text_images/da/summary/summary_profile_ability_da.png differ diff --git a/public/images/ui/legacy/text_images/da/summary/summary_profile_memo_title_da.png b/public/images/ui/legacy/text_images/da/summary/summary_profile_memo_title_da.png new file mode 100644 index 00000000000..48886d25e39 Binary files /dev/null and b/public/images/ui/legacy/text_images/da/summary/summary_profile_memo_title_da.png differ diff --git a/public/images/ui/legacy/text_images/da/summary/summary_profile_passive_da.png b/public/images/ui/legacy/text_images/da/summary/summary_profile_passive_da.png new file mode 100644 index 00000000000..681ae3f1b5e Binary files /dev/null and b/public/images/ui/legacy/text_images/da/summary/summary_profile_passive_da.png differ diff --git a/public/images/ui/legacy/text_images/da/summary/summary_profile_profile_title_da.png b/public/images/ui/legacy/text_images/da/summary/summary_profile_profile_title_da.png new file mode 100644 index 00000000000..83b8a1d5e99 Binary files /dev/null and b/public/images/ui/legacy/text_images/da/summary/summary_profile_profile_title_da.png differ diff --git a/public/images/ui/legacy/text_images/da/summary/summary_stats_exp_title_da.png b/public/images/ui/legacy/text_images/da/summary/summary_stats_exp_title_da.png new file mode 100644 index 00000000000..feae0c9cb90 Binary files /dev/null and b/public/images/ui/legacy/text_images/da/summary/summary_stats_exp_title_da.png differ diff --git a/public/images/ui/legacy/text_images/da/summary/summary_stats_expbar_title_da.png b/public/images/ui/legacy/text_images/da/summary/summary_stats_expbar_title_da.png new file mode 100644 index 00000000000..78bfe5d9735 Binary files /dev/null and b/public/images/ui/legacy/text_images/da/summary/summary_stats_expbar_title_da.png differ diff --git a/public/images/ui/legacy/text_images/da/summary/summary_stats_item_title_da.png b/public/images/ui/legacy/text_images/da/summary/summary_stats_item_title_da.png new file mode 100644 index 00000000000..2cbce6c3dcf Binary files /dev/null and b/public/images/ui/legacy/text_images/da/summary/summary_stats_item_title_da.png differ diff --git a/public/images/ui/legacy/text_images/da/summary/summary_stats_stats_title_da.png b/public/images/ui/legacy/text_images/da/summary/summary_stats_stats_title_da.png new file mode 100644 index 00000000000..ff97416c7ed Binary files /dev/null and b/public/images/ui/legacy/text_images/da/summary/summary_stats_stats_title_da.png differ diff --git a/public/images/ui/legacy/text_images/da/summary/summary_tabs_1_da.png b/public/images/ui/legacy/text_images/da/summary/summary_tabs_1_da.png new file mode 100644 index 00000000000..379768ea310 Binary files /dev/null and b/public/images/ui/legacy/text_images/da/summary/summary_tabs_1_da.png differ diff --git a/public/images/ui/legacy/text_images/da/summary/summary_tabs_2_da.png b/public/images/ui/legacy/text_images/da/summary/summary_tabs_2_da.png new file mode 100644 index 00000000000..2a04879b32b Binary files /dev/null and b/public/images/ui/legacy/text_images/da/summary/summary_tabs_2_da.png differ diff --git a/public/images/ui/legacy/text_images/da/summary/summary_tabs_3_da.png b/public/images/ui/legacy/text_images/da/summary/summary_tabs_3_da.png new file mode 100644 index 00000000000..ef65774f744 Binary files /dev/null and b/public/images/ui/legacy/text_images/da/summary/summary_tabs_3_da.png differ diff --git a/public/images/ui/legacy/text_images/de/battle_ui/overlay_exp_label_de.png b/public/images/ui/legacy/text_images/de/battle_ui/overlay_exp_label_de.png new file mode 100644 index 00000000000..4c456fff94e Binary files /dev/null and b/public/images/ui/legacy/text_images/de/battle_ui/overlay_exp_label_de.png differ diff --git a/public/images/ui/legacy/text_images/de/battle_ui/overlay_hp_label_boss_de.png b/public/images/ui/legacy/text_images/de/battle_ui/overlay_hp_label_boss_de.png new file mode 100644 index 00000000000..283d63fb235 Binary files /dev/null and b/public/images/ui/legacy/text_images/de/battle_ui/overlay_hp_label_boss_de.png differ diff --git a/public/images/ui/legacy/text_images/de/battle_ui/overlay_hp_label_de.png b/public/images/ui/legacy/text_images/de/battle_ui/overlay_hp_label_de.png new file mode 100644 index 00000000000..b8404159bc9 Binary files /dev/null and b/public/images/ui/legacy/text_images/de/battle_ui/overlay_hp_label_de.png differ diff --git a/public/images/ui/legacy/text_images/de/battle_ui/overlay_lv_de.png b/public/images/ui/legacy/text_images/de/battle_ui/overlay_lv_de.png new file mode 100644 index 00000000000..ea32ac03ee2 Binary files /dev/null and b/public/images/ui/legacy/text_images/de/battle_ui/overlay_lv_de.png differ diff --git a/public/images/ui/legacy/text_images/de/battle_ui/pbinfo_stat_de.json b/public/images/ui/legacy/text_images/de/battle_ui/pbinfo_stat_de.json new file mode 100644 index 00000000000..c5ace776596 --- /dev/null +++ b/public/images/ui/legacy/text_images/de/battle_ui/pbinfo_stat_de.json @@ -0,0 +1,209 @@ +{ + "textures": [ + { + "image": "pbinfo_stat_de.png", + "format": "RGBA8888", + "size": { + "w": 112, + "h": 6 + }, + "scale": 1, + "frames": [ + { + "filename": "SPATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 18, + "h": 6 + }, + "frame": { + "x": 0, + "y": 0, + "w": 18, + "h": 6 + } + }, + { + "filename": "SPDEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 18, + "h": 6 + }, + "frame": { + "x": 18, + "y": 0, + "w": 18, + "h": 6 + } + }, + { + "filename": "CRIT", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 17, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 16, + "h": 6 + }, + "frame": { + "x": 36, + "y": 0, + "w": 16, + "h": 6 + } + }, + { + "filename": "ACC", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 52, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "ATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 64, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "DEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 76, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "EVA", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 88, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "SPD", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 100, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "HP", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 9, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 8, + "h": 6 + }, + "frame": { + "x": 112, + "y": 0, + "w": 8, + "h": 6 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:40d30205ce8efd40dfa86cd11b0491d6:7076db6ed74199dcfb38fc8cd4d4a0e8:05882267d3999884e0491134e98b1b53$" + } +} diff --git a/public/images/ui/legacy/text_images/de/battle_ui/pbinfo_stat_de.png b/public/images/ui/legacy/text_images/de/battle_ui/pbinfo_stat_de.png new file mode 100644 index 00000000000..8de02e9f16e Binary files /dev/null and b/public/images/ui/legacy/text_images/de/battle_ui/pbinfo_stat_de.png differ diff --git a/public/images/ui/legacy/text_images/de/party_ui/party_slot_overlay_hp_de.png b/public/images/ui/legacy/text_images/de/party_ui/party_slot_overlay_hp_de.png new file mode 100644 index 00000000000..8265dfda0d2 Binary files /dev/null and b/public/images/ui/legacy/text_images/de/party_ui/party_slot_overlay_hp_de.png differ diff --git a/public/images/ui/legacy/text_images/de/party_ui/party_slot_overlay_lv_de.png b/public/images/ui/legacy/text_images/de/party_ui/party_slot_overlay_lv_de.png new file mode 100644 index 00000000000..11bb545c7af Binary files /dev/null and b/public/images/ui/legacy/text_images/de/party_ui/party_slot_overlay_lv_de.png differ diff --git a/public/images/ui/legacy/text_images/de/summary/summary_dexnb_label_de.png b/public/images/ui/legacy/text_images/de/summary/summary_dexnb_label_de.png new file mode 100644 index 00000000000..ef081f493f3 Binary files /dev/null and b/public/images/ui/legacy/text_images/de/summary/summary_dexnb_label_de.png differ diff --git a/public/images/ui/legacy/text_images/de/summary/summary_dexnb_label_overlay_shiny_de.png b/public/images/ui/legacy/text_images/de/summary/summary_dexnb_label_overlay_shiny_de.png new file mode 100644 index 00000000000..92c2412f426 Binary files /dev/null and b/public/images/ui/legacy/text_images/de/summary/summary_dexnb_label_overlay_shiny_de.png differ diff --git a/public/images/ui/legacy/text_images/de/summary/summary_moves_descriptions_title_de.png b/public/images/ui/legacy/text_images/de/summary/summary_moves_descriptions_title_de.png new file mode 100644 index 00000000000..ea4827c081d Binary files /dev/null and b/public/images/ui/legacy/text_images/de/summary/summary_moves_descriptions_title_de.png differ diff --git a/public/images/ui/legacy/text_images/de/summary/summary_moves_effect_title_de.png b/public/images/ui/legacy/text_images/de/summary/summary_moves_effect_title_de.png new file mode 100644 index 00000000000..951e9281839 Binary files /dev/null and b/public/images/ui/legacy/text_images/de/summary/summary_moves_effect_title_de.png differ diff --git a/public/images/ui/legacy/text_images/de/summary/summary_moves_moves_title_de.png b/public/images/ui/legacy/text_images/de/summary/summary_moves_moves_title_de.png new file mode 100644 index 00000000000..d5e28d3dfe7 Binary files /dev/null and b/public/images/ui/legacy/text_images/de/summary/summary_moves_moves_title_de.png differ diff --git a/public/images/ui/legacy/text_images/de/summary/summary_moves_overlay_pp_de.png b/public/images/ui/legacy/text_images/de/summary/summary_moves_overlay_pp_de.png new file mode 100644 index 00000000000..ba23731775d Binary files /dev/null and b/public/images/ui/legacy/text_images/de/summary/summary_moves_overlay_pp_de.png differ diff --git a/public/images/ui/legacy/text_images/de/summary/summary_profile_ability_de.png b/public/images/ui/legacy/text_images/de/summary/summary_profile_ability_de.png new file mode 100644 index 00000000000..2b6bd055555 Binary files /dev/null and b/public/images/ui/legacy/text_images/de/summary/summary_profile_ability_de.png differ diff --git a/public/images/ui/legacy/text_images/de/summary/summary_profile_memo_title_de.png b/public/images/ui/legacy/text_images/de/summary/summary_profile_memo_title_de.png new file mode 100644 index 00000000000..089668218fa Binary files /dev/null and b/public/images/ui/legacy/text_images/de/summary/summary_profile_memo_title_de.png differ diff --git a/public/images/ui/legacy/text_images/de/summary/summary_profile_passive_de.png b/public/images/ui/legacy/text_images/de/summary/summary_profile_passive_de.png new file mode 100644 index 00000000000..681ae3f1b5e Binary files /dev/null and b/public/images/ui/legacy/text_images/de/summary/summary_profile_passive_de.png differ diff --git a/public/images/ui/legacy/text_images/de/summary/summary_profile_profile_title_de.png b/public/images/ui/legacy/text_images/de/summary/summary_profile_profile_title_de.png new file mode 100644 index 00000000000..83b8a1d5e99 Binary files /dev/null and b/public/images/ui/legacy/text_images/de/summary/summary_profile_profile_title_de.png differ diff --git a/public/images/ui/legacy/text_images/de/summary/summary_stats_exp_title_de.png b/public/images/ui/legacy/text_images/de/summary/summary_stats_exp_title_de.png new file mode 100644 index 00000000000..fa702b4c223 Binary files /dev/null and b/public/images/ui/legacy/text_images/de/summary/summary_stats_exp_title_de.png differ diff --git a/public/images/ui/legacy/text_images/de/summary/summary_stats_expbar_title_de.png b/public/images/ui/legacy/text_images/de/summary/summary_stats_expbar_title_de.png new file mode 100644 index 00000000000..78bfe5d9735 Binary files /dev/null and b/public/images/ui/legacy/text_images/de/summary/summary_stats_expbar_title_de.png differ diff --git a/public/images/ui/legacy/text_images/de/summary/summary_stats_item_title_de.png b/public/images/ui/legacy/text_images/de/summary/summary_stats_item_title_de.png new file mode 100644 index 00000000000..42e08b3e52a Binary files /dev/null and b/public/images/ui/legacy/text_images/de/summary/summary_stats_item_title_de.png differ diff --git a/public/images/ui/legacy/text_images/de/summary/summary_stats_stats_title_de.png b/public/images/ui/legacy/text_images/de/summary/summary_stats_stats_title_de.png new file mode 100644 index 00000000000..87438a5bd4f Binary files /dev/null and b/public/images/ui/legacy/text_images/de/summary/summary_stats_stats_title_de.png differ diff --git a/public/images/ui/legacy/text_images/de/summary/summary_tabs_1_de.png b/public/images/ui/legacy/text_images/de/summary/summary_tabs_1_de.png new file mode 100644 index 00000000000..379768ea310 Binary files /dev/null and b/public/images/ui/legacy/text_images/de/summary/summary_tabs_1_de.png differ diff --git a/public/images/ui/legacy/text_images/de/summary/summary_tabs_2_de.png b/public/images/ui/legacy/text_images/de/summary/summary_tabs_2_de.png new file mode 100644 index 00000000000..2a04879b32b Binary files /dev/null and b/public/images/ui/legacy/text_images/de/summary/summary_tabs_2_de.png differ diff --git a/public/images/ui/legacy/text_images/de/summary/summary_tabs_3_de.png b/public/images/ui/legacy/text_images/de/summary/summary_tabs_3_de.png new file mode 100644 index 00000000000..ef65774f744 Binary files /dev/null and b/public/images/ui/legacy/text_images/de/summary/summary_tabs_3_de.png differ diff --git a/public/images/ui/legacy/text_images/en/battle_ui/overlay_exp_label.png b/public/images/ui/legacy/text_images/en/battle_ui/overlay_exp_label.png new file mode 100644 index 00000000000..40b5e8925a1 Binary files /dev/null and b/public/images/ui/legacy/text_images/en/battle_ui/overlay_exp_label.png differ diff --git a/public/images/ui/legacy/text_images/en/battle_ui/overlay_hp_label.png b/public/images/ui/legacy/text_images/en/battle_ui/overlay_hp_label.png new file mode 100644 index 00000000000..67824c7ee4e Binary files /dev/null and b/public/images/ui/legacy/text_images/en/battle_ui/overlay_hp_label.png differ diff --git a/public/images/ui/legacy/text_images/en/battle_ui/overlay_hp_label_boss.png b/public/images/ui/legacy/text_images/en/battle_ui/overlay_hp_label_boss.png new file mode 100644 index 00000000000..283d63fb235 Binary files /dev/null and b/public/images/ui/legacy/text_images/en/battle_ui/overlay_hp_label_boss.png differ diff --git a/public/images/ui/legacy/text_images/en/battle_ui/overlay_lv.png b/public/images/ui/legacy/text_images/en/battle_ui/overlay_lv.png new file mode 100644 index 00000000000..ea32ac03ee2 Binary files /dev/null and b/public/images/ui/legacy/text_images/en/battle_ui/overlay_lv.png differ diff --git a/public/images/ui/legacy/pbinfo_stat.json b/public/images/ui/legacy/text_images/en/battle_ui/pbinfo_stat.json similarity index 100% rename from public/images/ui/legacy/pbinfo_stat.json rename to public/images/ui/legacy/text_images/en/battle_ui/pbinfo_stat.json diff --git a/public/images/ui/legacy/text_images/en/battle_ui/pbinfo_stat.png b/public/images/ui/legacy/text_images/en/battle_ui/pbinfo_stat.png new file mode 100644 index 00000000000..c729e7a2207 Binary files /dev/null and b/public/images/ui/legacy/text_images/en/battle_ui/pbinfo_stat.png differ diff --git a/public/images/ui/legacy/text_images/en/party_ui/party_slot_overlay_hp.png b/public/images/ui/legacy/text_images/en/party_ui/party_slot_overlay_hp.png new file mode 100644 index 00000000000..a78ac090d3b Binary files /dev/null and b/public/images/ui/legacy/text_images/en/party_ui/party_slot_overlay_hp.png differ diff --git a/public/images/ui/legacy/text_images/en/party_ui/party_slot_overlay_lv.png b/public/images/ui/legacy/text_images/en/party_ui/party_slot_overlay_lv.png new file mode 100644 index 00000000000..11bb545c7af Binary files /dev/null and b/public/images/ui/legacy/text_images/en/party_ui/party_slot_overlay_lv.png differ diff --git a/public/images/ui/legacy/text_images/en/summary/summary_dexnb_label.png b/public/images/ui/legacy/text_images/en/summary/summary_dexnb_label.png new file mode 100644 index 00000000000..eab90a91c7f Binary files /dev/null and b/public/images/ui/legacy/text_images/en/summary/summary_dexnb_label.png differ diff --git a/public/images/ui/legacy/summary_overlay_shiny.png b/public/images/ui/legacy/text_images/en/summary/summary_dexnb_label_overlay_shiny.png similarity index 100% rename from public/images/ui/legacy/summary_overlay_shiny.png rename to public/images/ui/legacy/text_images/en/summary/summary_dexnb_label_overlay_shiny.png diff --git a/public/images/ui/legacy/text_images/en/summary/summary_moves_descriptions_title.png b/public/images/ui/legacy/text_images/en/summary/summary_moves_descriptions_title.png new file mode 100644 index 00000000000..3d2b4d08376 Binary files /dev/null and b/public/images/ui/legacy/text_images/en/summary/summary_moves_descriptions_title.png differ diff --git a/public/images/ui/legacy/text_images/en/summary/summary_moves_effect_title.png b/public/images/ui/legacy/text_images/en/summary/summary_moves_effect_title.png new file mode 100644 index 00000000000..55fb0efd832 Binary files /dev/null and b/public/images/ui/legacy/text_images/en/summary/summary_moves_effect_title.png differ diff --git a/public/images/ui/legacy/text_images/en/summary/summary_moves_moves_title.png b/public/images/ui/legacy/text_images/en/summary/summary_moves_moves_title.png new file mode 100644 index 00000000000..d869ab4e311 Binary files /dev/null and b/public/images/ui/legacy/text_images/en/summary/summary_moves_moves_title.png differ diff --git a/public/images/ui/legacy/text_images/en/summary/summary_moves_overlay_pp.png b/public/images/ui/legacy/text_images/en/summary/summary_moves_overlay_pp.png new file mode 100644 index 00000000000..9babffc0429 Binary files /dev/null and b/public/images/ui/legacy/text_images/en/summary/summary_moves_overlay_pp.png differ diff --git a/public/images/ui/legacy/text_images/en/summary/summary_profile_ability.png b/public/images/ui/legacy/text_images/en/summary/summary_profile_ability.png new file mode 100644 index 00000000000..6600db26802 Binary files /dev/null and b/public/images/ui/legacy/text_images/en/summary/summary_profile_ability.png differ diff --git a/public/images/ui/legacy/text_images/en/summary/summary_profile_memo_title.png b/public/images/ui/legacy/text_images/en/summary/summary_profile_memo_title.png new file mode 100644 index 00000000000..14cdf099044 Binary files /dev/null and b/public/images/ui/legacy/text_images/en/summary/summary_profile_memo_title.png differ diff --git a/public/images/ui/legacy/text_images/en/summary/summary_profile_passive.png b/public/images/ui/legacy/text_images/en/summary/summary_profile_passive.png new file mode 100644 index 00000000000..66f56ff435e Binary files /dev/null and b/public/images/ui/legacy/text_images/en/summary/summary_profile_passive.png differ diff --git a/public/images/ui/legacy/text_images/en/summary/summary_profile_profile_title.png b/public/images/ui/legacy/text_images/en/summary/summary_profile_profile_title.png new file mode 100644 index 00000000000..8d4f82df3b3 Binary files /dev/null and b/public/images/ui/legacy/text_images/en/summary/summary_profile_profile_title.png differ diff --git a/public/images/ui/legacy/text_images/en/summary/summary_stats_exp_title.png b/public/images/ui/legacy/text_images/en/summary/summary_stats_exp_title.png new file mode 100644 index 00000000000..d0d8d7f81a1 Binary files /dev/null and b/public/images/ui/legacy/text_images/en/summary/summary_stats_exp_title.png differ diff --git a/public/images/ui/legacy/text_images/en/summary/summary_stats_expbar_title.png b/public/images/ui/legacy/text_images/en/summary/summary_stats_expbar_title.png new file mode 100644 index 00000000000..e9dfb10e5d6 Binary files /dev/null and b/public/images/ui/legacy/text_images/en/summary/summary_stats_expbar_title.png differ diff --git a/public/images/ui/legacy/text_images/en/summary/summary_stats_item_title.png b/public/images/ui/legacy/text_images/en/summary/summary_stats_item_title.png new file mode 100644 index 00000000000..5752b28288c Binary files /dev/null and b/public/images/ui/legacy/text_images/en/summary/summary_stats_item_title.png differ diff --git a/public/images/ui/legacy/text_images/en/summary/summary_stats_stats_title.png b/public/images/ui/legacy/text_images/en/summary/summary_stats_stats_title.png new file mode 100644 index 00000000000..5531819ef66 Binary files /dev/null and b/public/images/ui/legacy/text_images/en/summary/summary_stats_stats_title.png differ diff --git a/public/images/ui/legacy/text_images/en/summary/summary_tabs_1.png b/public/images/ui/legacy/text_images/en/summary/summary_tabs_1.png new file mode 100644 index 00000000000..379768ea310 Binary files /dev/null and b/public/images/ui/legacy/text_images/en/summary/summary_tabs_1.png differ diff --git a/public/images/ui/legacy/text_images/en/summary/summary_tabs_2.png b/public/images/ui/legacy/text_images/en/summary/summary_tabs_2.png new file mode 100644 index 00000000000..2a04879b32b Binary files /dev/null and b/public/images/ui/legacy/text_images/en/summary/summary_tabs_2.png differ diff --git a/public/images/ui/legacy/text_images/en/summary/summary_tabs_3.png b/public/images/ui/legacy/text_images/en/summary/summary_tabs_3.png new file mode 100644 index 00000000000..ef65774f744 Binary files /dev/null and b/public/images/ui/legacy/text_images/en/summary/summary_tabs_3.png differ diff --git a/public/images/ui/legacy/text_images/es-ES/battle_ui/overlay_exp_label_es-ES.png b/public/images/ui/legacy/text_images/es-ES/battle_ui/overlay_exp_label_es-ES.png new file mode 100644 index 00000000000..acb04a84a31 Binary files /dev/null and b/public/images/ui/legacy/text_images/es-ES/battle_ui/overlay_exp_label_es-ES.png differ diff --git a/public/images/ui/legacy/text_images/es-ES/battle_ui/overlay_hp_label_boss_es-ES.png b/public/images/ui/legacy/text_images/es-ES/battle_ui/overlay_hp_label_boss_es-ES.png new file mode 100644 index 00000000000..6018011d75b Binary files /dev/null and b/public/images/ui/legacy/text_images/es-ES/battle_ui/overlay_hp_label_boss_es-ES.png differ diff --git a/public/images/ui/legacy/text_images/es-ES/battle_ui/overlay_hp_label_es-ES.png b/public/images/ui/legacy/text_images/es-ES/battle_ui/overlay_hp_label_es-ES.png new file mode 100644 index 00000000000..4f388b70a75 Binary files /dev/null and b/public/images/ui/legacy/text_images/es-ES/battle_ui/overlay_hp_label_es-ES.png differ diff --git a/public/images/ui/legacy/text_images/es-ES/battle_ui/overlay_lv_es-ES.png b/public/images/ui/legacy/text_images/es-ES/battle_ui/overlay_lv_es-ES.png new file mode 100644 index 00000000000..7fdf26388bf Binary files /dev/null and b/public/images/ui/legacy/text_images/es-ES/battle_ui/overlay_lv_es-ES.png differ diff --git a/public/images/ui/legacy/text_images/es-ES/battle_ui/pbinfo_stat_es_ES.json b/public/images/ui/legacy/text_images/es-ES/battle_ui/pbinfo_stat_es_ES.json new file mode 100644 index 00000000000..e7e6318b3b5 --- /dev/null +++ b/public/images/ui/legacy/text_images/es-ES/battle_ui/pbinfo_stat_es_ES.json @@ -0,0 +1,209 @@ +{ + "textures": [ + { + "image": "pbinfo_stat_es-ES.png", + "format": "RGBA8888", + "size": { + "w": 112, + "h": 8 + }, + "scale": 1, + "frames": [ + { + "filename": "SPATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 18, + "h": 8 + }, + "frame": { + "x": 0, + "y": 0, + "w": 18, + "h": 8 + } + }, + { + "filename": "SPDEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 18, + "h": 8 + }, + "frame": { + "x": 18, + "y": 0, + "w": 18, + "h": 8 + } + }, + { + "filename": "CRIT", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 17, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 16, + "h": 8 + }, + "frame": { + "x": 36, + "y": 0, + "w": 16, + "h": 8 + } + }, + { + "filename": "ACC", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 12, + "h": 8 + }, + "frame": { + "x": 52, + "y": 0, + "w": 12, + "h": 8 + } + }, + { + "filename": "ATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 12, + "h": 8 + }, + "frame": { + "x": 64, + "y": 0, + "w": 12, + "h": 8 + } + }, + { + "filename": "DEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 12, + "h": 8 + }, + "frame": { + "x": 76, + "y": 0, + "w": 12, + "h": 8 + } + }, + { + "filename": "EVA", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 12, + "h": 8 + }, + "frame": { + "x": 88, + "y": 0, + "w": 12, + "h": 8 + } + }, + { + "filename": "SPD", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 12, + "h": 8 + }, + "frame": { + "x": 100, + "y": 0, + "w": 12, + "h": 8 + } + }, + { + "filename": "HP", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 9, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 8, + "h": 8 + }, + "frame": { + "x": 112, + "y": 0, + "w": 8, + "h": 8 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:40d30205ce8efd40dfa86cd11b0491d6:7076db6ed74199dcfb38fc8cd4d4a0e8:05882267d3999884e0491134e98b1b53$" + } +} diff --git a/public/images/ui/legacy/text_images/es-ES/battle_ui/pbinfo_stat_es_ES.png b/public/images/ui/legacy/text_images/es-ES/battle_ui/pbinfo_stat_es_ES.png new file mode 100644 index 00000000000..0a66f1a7137 Binary files /dev/null and b/public/images/ui/legacy/text_images/es-ES/battle_ui/pbinfo_stat_es_ES.png differ diff --git a/public/images/ui/legacy/text_images/es-ES/party_ui/party_slot_overlay_hp_es-ES.png b/public/images/ui/legacy/text_images/es-ES/party_ui/party_slot_overlay_hp_es-ES.png new file mode 100644 index 00000000000..981d8573aca Binary files /dev/null and b/public/images/ui/legacy/text_images/es-ES/party_ui/party_slot_overlay_hp_es-ES.png differ diff --git a/public/images/ui/legacy/text_images/es-ES/party_ui/party_slot_overlay_lv_es-ES.png b/public/images/ui/legacy/text_images/es-ES/party_ui/party_slot_overlay_lv_es-ES.png new file mode 100644 index 00000000000..512db34fa85 Binary files /dev/null and b/public/images/ui/legacy/text_images/es-ES/party_ui/party_slot_overlay_lv_es-ES.png differ diff --git a/public/images/ui/legacy/text_images/es-ES/summary/summary_dexnb_label_es-ES.png b/public/images/ui/legacy/text_images/es-ES/summary/summary_dexnb_label_es-ES.png new file mode 100644 index 00000000000..a457468d8d0 Binary files /dev/null and b/public/images/ui/legacy/text_images/es-ES/summary/summary_dexnb_label_es-ES.png differ diff --git a/public/images/ui/legacy/text_images/es-ES/summary/summary_dexnb_label_overlay_shiny_es-ES.png b/public/images/ui/legacy/text_images/es-ES/summary/summary_dexnb_label_overlay_shiny_es-ES.png new file mode 100644 index 00000000000..3277a28a59b Binary files /dev/null and b/public/images/ui/legacy/text_images/es-ES/summary/summary_dexnb_label_overlay_shiny_es-ES.png differ diff --git a/public/images/ui/legacy/text_images/es-ES/summary/summary_moves_descriptions_title_es-ES.png b/public/images/ui/legacy/text_images/es-ES/summary/summary_moves_descriptions_title_es-ES.png new file mode 100644 index 00000000000..ffcae31894d Binary files /dev/null and b/public/images/ui/legacy/text_images/es-ES/summary/summary_moves_descriptions_title_es-ES.png differ diff --git a/public/images/ui/legacy/text_images/es-ES/summary/summary_moves_effect_title_es-ES.png b/public/images/ui/legacy/text_images/es-ES/summary/summary_moves_effect_title_es-ES.png new file mode 100644 index 00000000000..50ce2f51d6f Binary files /dev/null and b/public/images/ui/legacy/text_images/es-ES/summary/summary_moves_effect_title_es-ES.png differ diff --git a/public/images/ui/legacy/text_images/es-ES/summary/summary_moves_moves_title_es-ES.png b/public/images/ui/legacy/text_images/es-ES/summary/summary_moves_moves_title_es-ES.png new file mode 100644 index 00000000000..ffca8bdfa10 Binary files /dev/null and b/public/images/ui/legacy/text_images/es-ES/summary/summary_moves_moves_title_es-ES.png differ diff --git a/public/images/ui/legacy/text_images/es-ES/summary/summary_moves_overlay_pp_es-ES.png b/public/images/ui/legacy/text_images/es-ES/summary/summary_moves_overlay_pp_es-ES.png new file mode 100644 index 00000000000..9babffc0429 Binary files /dev/null and b/public/images/ui/legacy/text_images/es-ES/summary/summary_moves_overlay_pp_es-ES.png differ diff --git a/public/images/ui/legacy/text_images/es-ES/summary/summary_profile_ability_es-ES.png b/public/images/ui/legacy/text_images/es-ES/summary/summary_profile_ability_es-ES.png new file mode 100644 index 00000000000..b1b1a84ddcf Binary files /dev/null and b/public/images/ui/legacy/text_images/es-ES/summary/summary_profile_ability_es-ES.png differ diff --git a/public/images/ui/legacy/text_images/es-ES/summary/summary_profile_memo_title_es-ES.png b/public/images/ui/legacy/text_images/es-ES/summary/summary_profile_memo_title_es-ES.png new file mode 100644 index 00000000000..e837a58e4f9 Binary files /dev/null and b/public/images/ui/legacy/text_images/es-ES/summary/summary_profile_memo_title_es-ES.png differ diff --git a/public/images/ui/legacy/text_images/es-ES/summary/summary_profile_passive_es-ES.png b/public/images/ui/legacy/text_images/es-ES/summary/summary_profile_passive_es-ES.png new file mode 100644 index 00000000000..885453e3e98 Binary files /dev/null and b/public/images/ui/legacy/text_images/es-ES/summary/summary_profile_passive_es-ES.png differ diff --git a/public/images/ui/legacy/text_images/es-ES/summary/summary_profile_profile_title_es-ES.png b/public/images/ui/legacy/text_images/es-ES/summary/summary_profile_profile_title_es-ES.png new file mode 100644 index 00000000000..51ba9300dab Binary files /dev/null and b/public/images/ui/legacy/text_images/es-ES/summary/summary_profile_profile_title_es-ES.png differ diff --git a/public/images/ui/legacy/text_images/es-ES/summary/summary_stats_exp_title_es-ES.png b/public/images/ui/legacy/text_images/es-ES/summary/summary_stats_exp_title_es-ES.png new file mode 100644 index 00000000000..7c8a80f0627 Binary files /dev/null and b/public/images/ui/legacy/text_images/es-ES/summary/summary_stats_exp_title_es-ES.png differ diff --git a/public/images/ui/legacy/text_images/es-ES/summary/summary_stats_expbar_title_es-ES.png b/public/images/ui/legacy/text_images/es-ES/summary/summary_stats_expbar_title_es-ES.png new file mode 100644 index 00000000000..e9dfb10e5d6 Binary files /dev/null and b/public/images/ui/legacy/text_images/es-ES/summary/summary_stats_expbar_title_es-ES.png differ diff --git a/public/images/ui/legacy/text_images/es-ES/summary/summary_stats_item_title_es-ES.png b/public/images/ui/legacy/text_images/es-ES/summary/summary_stats_item_title_es-ES.png new file mode 100644 index 00000000000..15fdb806125 Binary files /dev/null and b/public/images/ui/legacy/text_images/es-ES/summary/summary_stats_item_title_es-ES.png differ diff --git a/public/images/ui/legacy/text_images/es-ES/summary/summary_stats_stats_title_es-ES.png b/public/images/ui/legacy/text_images/es-ES/summary/summary_stats_stats_title_es-ES.png new file mode 100644 index 00000000000..2233461522c Binary files /dev/null and b/public/images/ui/legacy/text_images/es-ES/summary/summary_stats_stats_title_es-ES.png differ diff --git a/public/images/ui/legacy/text_images/es-ES/summary/summary_tabs_1_es-ES.png b/public/images/ui/legacy/text_images/es-ES/summary/summary_tabs_1_es-ES.png new file mode 100644 index 00000000000..379768ea310 Binary files /dev/null and b/public/images/ui/legacy/text_images/es-ES/summary/summary_tabs_1_es-ES.png differ diff --git a/public/images/ui/legacy/text_images/es-ES/summary/summary_tabs_2_es-ES.png b/public/images/ui/legacy/text_images/es-ES/summary/summary_tabs_2_es-ES.png new file mode 100644 index 00000000000..2a04879b32b Binary files /dev/null and b/public/images/ui/legacy/text_images/es-ES/summary/summary_tabs_2_es-ES.png differ diff --git a/public/images/ui/legacy/text_images/es-ES/summary/summary_tabs_3_es-ES.png b/public/images/ui/legacy/text_images/es-ES/summary/summary_tabs_3_es-ES.png new file mode 100644 index 00000000000..ef65774f744 Binary files /dev/null and b/public/images/ui/legacy/text_images/es-ES/summary/summary_tabs_3_es-ES.png differ diff --git a/public/images/ui/legacy/text_images/es-MX/battle_ui/overlay_exp_label_es-MX.png b/public/images/ui/legacy/text_images/es-MX/battle_ui/overlay_exp_label_es-MX.png new file mode 100644 index 00000000000..acb04a84a31 Binary files /dev/null and b/public/images/ui/legacy/text_images/es-MX/battle_ui/overlay_exp_label_es-MX.png differ diff --git a/public/images/ui/legacy/text_images/es-MX/battle_ui/overlay_hp_label_boss_es-MX.png b/public/images/ui/legacy/text_images/es-MX/battle_ui/overlay_hp_label_boss_es-MX.png new file mode 100644 index 00000000000..6018011d75b Binary files /dev/null and b/public/images/ui/legacy/text_images/es-MX/battle_ui/overlay_hp_label_boss_es-MX.png differ diff --git a/public/images/ui/legacy/text_images/es-MX/battle_ui/overlay_hp_label_es-MX.png b/public/images/ui/legacy/text_images/es-MX/battle_ui/overlay_hp_label_es-MX.png new file mode 100644 index 00000000000..4f388b70a75 Binary files /dev/null and b/public/images/ui/legacy/text_images/es-MX/battle_ui/overlay_hp_label_es-MX.png differ diff --git a/public/images/ui/legacy/text_images/es-MX/battle_ui/overlay_lv_es-MX.png b/public/images/ui/legacy/text_images/es-MX/battle_ui/overlay_lv_es-MX.png new file mode 100644 index 00000000000..7fdf26388bf Binary files /dev/null and b/public/images/ui/legacy/text_images/es-MX/battle_ui/overlay_lv_es-MX.png differ diff --git a/public/images/ui/legacy/text_images/es-MX/battle_ui/pbinfo_stat_es_MX.json b/public/images/ui/legacy/text_images/es-MX/battle_ui/pbinfo_stat_es_MX.json new file mode 100644 index 00000000000..98bd43e7dd9 --- /dev/null +++ b/public/images/ui/legacy/text_images/es-MX/battle_ui/pbinfo_stat_es_MX.json @@ -0,0 +1,209 @@ +{ + "textures": [ + { + "image": "pbinfo_stat_es-MX.png", + "format": "RGBA8888", + "size": { + "w": 112, + "h": 8 + }, + "scale": 1, + "frames": [ + { + "filename": "SPATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 18, + "h": 8 + }, + "frame": { + "x": 0, + "y": 0, + "w": 18, + "h": 8 + } + }, + { + "filename": "SPDEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 18, + "h": 8 + }, + "frame": { + "x": 18, + "y": 0, + "w": 18, + "h": 8 + } + }, + { + "filename": "CRIT", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 17, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 16, + "h": 8 + }, + "frame": { + "x": 36, + "y": 0, + "w": 16, + "h": 8 + } + }, + { + "filename": "ACC", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 12, + "h": 8 + }, + "frame": { + "x": 52, + "y": 0, + "w": 12, + "h": 8 + } + }, + { + "filename": "ATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 12, + "h": 8 + }, + "frame": { + "x": 64, + "y": 0, + "w": 12, + "h": 8 + } + }, + { + "filename": "DEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 12, + "h": 8 + }, + "frame": { + "x": 76, + "y": 0, + "w": 12, + "h": 8 + } + }, + { + "filename": "EVA", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 12, + "h": 8 + }, + "frame": { + "x": 88, + "y": 0, + "w": 12, + "h": 8 + } + }, + { + "filename": "SPD", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 12, + "h": 8 + }, + "frame": { + "x": 100, + "y": 0, + "w": 12, + "h": 8 + } + }, + { + "filename": "HP", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 9, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 8, + "h": 8 + }, + "frame": { + "x": 112, + "y": 0, + "w": 8, + "h": 8 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:40d30205ce8efd40dfa86cd11b0491d6:7076db6ed74199dcfb38fc8cd4d4a0e8:05882267d3999884e0491134e98b1b53$" + } +} diff --git a/public/images/ui/legacy/text_images/es-MX/battle_ui/pbinfo_stat_es_MX.png b/public/images/ui/legacy/text_images/es-MX/battle_ui/pbinfo_stat_es_MX.png new file mode 100644 index 00000000000..0a66f1a7137 Binary files /dev/null and b/public/images/ui/legacy/text_images/es-MX/battle_ui/pbinfo_stat_es_MX.png differ diff --git a/public/images/ui/legacy/text_images/es-MX/party_ui/party_slot_overlay_hp_es-MX.png b/public/images/ui/legacy/text_images/es-MX/party_ui/party_slot_overlay_hp_es-MX.png new file mode 100644 index 00000000000..981d8573aca Binary files /dev/null and b/public/images/ui/legacy/text_images/es-MX/party_ui/party_slot_overlay_hp_es-MX.png differ diff --git a/public/images/ui/legacy/text_images/es-MX/party_ui/party_slot_overlay_lv_es-MX.png b/public/images/ui/legacy/text_images/es-MX/party_ui/party_slot_overlay_lv_es-MX.png new file mode 100644 index 00000000000..512db34fa85 Binary files /dev/null and b/public/images/ui/legacy/text_images/es-MX/party_ui/party_slot_overlay_lv_es-MX.png differ diff --git a/public/images/ui/legacy/text_images/es-MX/summary/summary_dexnb_label_es-MX.png b/public/images/ui/legacy/text_images/es-MX/summary/summary_dexnb_label_es-MX.png new file mode 100644 index 00000000000..a457468d8d0 Binary files /dev/null and b/public/images/ui/legacy/text_images/es-MX/summary/summary_dexnb_label_es-MX.png differ diff --git a/public/images/ui/legacy/text_images/es-MX/summary/summary_dexnb_label_overlay_shiny_es-MX.png b/public/images/ui/legacy/text_images/es-MX/summary/summary_dexnb_label_overlay_shiny_es-MX.png new file mode 100644 index 00000000000..3277a28a59b Binary files /dev/null and b/public/images/ui/legacy/text_images/es-MX/summary/summary_dexnb_label_overlay_shiny_es-MX.png differ diff --git a/public/images/ui/legacy/text_images/es-MX/summary/summary_moves_descriptions_title_es-MX.png b/public/images/ui/legacy/text_images/es-MX/summary/summary_moves_descriptions_title_es-MX.png new file mode 100644 index 00000000000..ffcae31894d Binary files /dev/null and b/public/images/ui/legacy/text_images/es-MX/summary/summary_moves_descriptions_title_es-MX.png differ diff --git a/public/images/ui/legacy/text_images/es-MX/summary/summary_moves_effect_title_es-MX.png b/public/images/ui/legacy/text_images/es-MX/summary/summary_moves_effect_title_es-MX.png new file mode 100644 index 00000000000..50ce2f51d6f Binary files /dev/null and b/public/images/ui/legacy/text_images/es-MX/summary/summary_moves_effect_title_es-MX.png differ diff --git a/public/images/ui/legacy/text_images/es-MX/summary/summary_moves_moves_title_es-MX.png b/public/images/ui/legacy/text_images/es-MX/summary/summary_moves_moves_title_es-MX.png new file mode 100644 index 00000000000..ffca8bdfa10 Binary files /dev/null and b/public/images/ui/legacy/text_images/es-MX/summary/summary_moves_moves_title_es-MX.png differ diff --git a/public/images/ui/legacy/text_images/es-MX/summary/summary_moves_overlay_pp_es-MX.png b/public/images/ui/legacy/text_images/es-MX/summary/summary_moves_overlay_pp_es-MX.png new file mode 100644 index 00000000000..9babffc0429 Binary files /dev/null and b/public/images/ui/legacy/text_images/es-MX/summary/summary_moves_overlay_pp_es-MX.png differ diff --git a/public/images/ui/legacy/text_images/es-MX/summary/summary_profile_ability_es-MX.png b/public/images/ui/legacy/text_images/es-MX/summary/summary_profile_ability_es-MX.png new file mode 100644 index 00000000000..b1b1a84ddcf Binary files /dev/null and b/public/images/ui/legacy/text_images/es-MX/summary/summary_profile_ability_es-MX.png differ diff --git a/public/images/ui/legacy/text_images/es-MX/summary/summary_profile_memo_title_es-MX.png b/public/images/ui/legacy/text_images/es-MX/summary/summary_profile_memo_title_es-MX.png new file mode 100644 index 00000000000..e837a58e4f9 Binary files /dev/null and b/public/images/ui/legacy/text_images/es-MX/summary/summary_profile_memo_title_es-MX.png differ diff --git a/public/images/ui/legacy/text_images/es-MX/summary/summary_profile_passive_es-MX.png b/public/images/ui/legacy/text_images/es-MX/summary/summary_profile_passive_es-MX.png new file mode 100644 index 00000000000..885453e3e98 Binary files /dev/null and b/public/images/ui/legacy/text_images/es-MX/summary/summary_profile_passive_es-MX.png differ diff --git a/public/images/ui/legacy/text_images/es-MX/summary/summary_profile_profile_title_es-MX.png b/public/images/ui/legacy/text_images/es-MX/summary/summary_profile_profile_title_es-MX.png new file mode 100644 index 00000000000..51ba9300dab Binary files /dev/null and b/public/images/ui/legacy/text_images/es-MX/summary/summary_profile_profile_title_es-MX.png differ diff --git a/public/images/ui/legacy/text_images/es-MX/summary/summary_stats_exp_title_es-MX.png b/public/images/ui/legacy/text_images/es-MX/summary/summary_stats_exp_title_es-MX.png new file mode 100644 index 00000000000..7c8a80f0627 Binary files /dev/null and b/public/images/ui/legacy/text_images/es-MX/summary/summary_stats_exp_title_es-MX.png differ diff --git a/public/images/ui/legacy/text_images/es-MX/summary/summary_stats_expbar_title_es-MX.png b/public/images/ui/legacy/text_images/es-MX/summary/summary_stats_expbar_title_es-MX.png new file mode 100644 index 00000000000..e9dfb10e5d6 Binary files /dev/null and b/public/images/ui/legacy/text_images/es-MX/summary/summary_stats_expbar_title_es-MX.png differ diff --git a/public/images/ui/legacy/text_images/es-MX/summary/summary_stats_item_title_es-MX.png b/public/images/ui/legacy/text_images/es-MX/summary/summary_stats_item_title_es-MX.png new file mode 100644 index 00000000000..15fdb806125 Binary files /dev/null and b/public/images/ui/legacy/text_images/es-MX/summary/summary_stats_item_title_es-MX.png differ diff --git a/public/images/ui/legacy/text_images/es-MX/summary/summary_stats_stats_title_es-MX.png b/public/images/ui/legacy/text_images/es-MX/summary/summary_stats_stats_title_es-MX.png new file mode 100644 index 00000000000..2233461522c Binary files /dev/null and b/public/images/ui/legacy/text_images/es-MX/summary/summary_stats_stats_title_es-MX.png differ diff --git a/public/images/ui/legacy/text_images/es-MX/summary/summary_tabs_1_es-MX.png b/public/images/ui/legacy/text_images/es-MX/summary/summary_tabs_1_es-MX.png new file mode 100644 index 00000000000..379768ea310 Binary files /dev/null and b/public/images/ui/legacy/text_images/es-MX/summary/summary_tabs_1_es-MX.png differ diff --git a/public/images/ui/legacy/text_images/es-MX/summary/summary_tabs_2_es-MX.png b/public/images/ui/legacy/text_images/es-MX/summary/summary_tabs_2_es-MX.png new file mode 100644 index 00000000000..2a04879b32b Binary files /dev/null and b/public/images/ui/legacy/text_images/es-MX/summary/summary_tabs_2_es-MX.png differ diff --git a/public/images/ui/legacy/text_images/es-MX/summary/summary_tabs_3_es-MX.png b/public/images/ui/legacy/text_images/es-MX/summary/summary_tabs_3_es-MX.png new file mode 100644 index 00000000000..ef65774f744 Binary files /dev/null and b/public/images/ui/legacy/text_images/es-MX/summary/summary_tabs_3_es-MX.png differ diff --git a/public/images/ui/legacy/text_images/fr/battle_ui/overlay_exp_label_fr.png b/public/images/ui/legacy/text_images/fr/battle_ui/overlay_exp_label_fr.png new file mode 100644 index 00000000000..40b5e8925a1 Binary files /dev/null and b/public/images/ui/legacy/text_images/fr/battle_ui/overlay_exp_label_fr.png differ diff --git a/public/images/ui/legacy/text_images/fr/battle_ui/overlay_hp_label_boss_fr.png b/public/images/ui/legacy/text_images/fr/battle_ui/overlay_hp_label_boss_fr.png new file mode 100644 index 00000000000..283d63fb235 Binary files /dev/null and b/public/images/ui/legacy/text_images/fr/battle_ui/overlay_hp_label_boss_fr.png differ diff --git a/public/images/ui/legacy/text_images/fr/battle_ui/overlay_hp_label_fr.png b/public/images/ui/legacy/text_images/fr/battle_ui/overlay_hp_label_fr.png new file mode 100644 index 00000000000..3f7e12c3246 Binary files /dev/null and b/public/images/ui/legacy/text_images/fr/battle_ui/overlay_hp_label_fr.png differ diff --git a/public/images/ui/legacy/text_images/fr/battle_ui/overlay_lv_fr.png b/public/images/ui/legacy/text_images/fr/battle_ui/overlay_lv_fr.png new file mode 100644 index 00000000000..5a31182069c Binary files /dev/null and b/public/images/ui/legacy/text_images/fr/battle_ui/overlay_lv_fr.png differ diff --git a/public/images/ui/legacy/text_images/fr/battle_ui/pbinfo_stat_fr.json b/public/images/ui/legacy/text_images/fr/battle_ui/pbinfo_stat_fr.json new file mode 100644 index 00000000000..00cc9f7ea0e --- /dev/null +++ b/public/images/ui/legacy/text_images/fr/battle_ui/pbinfo_stat_fr.json @@ -0,0 +1,209 @@ +{ + "textures": [ + { + "image": "pbinfo_stat_fr.png", + "format": "RGBA8888", + "size": { + "w": 112, + "h": 8 + }, + "scale": 1, + "frames": [ + { + "filename": "SPATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 18, + "h": 8 + }, + "frame": { + "x": 0, + "y": 0, + "w": 18, + "h": 8 + } + }, + { + "filename": "SPDEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 18, + "h": 8 + }, + "frame": { + "x": 18, + "y": 0, + "w": 18, + "h": 8 + } + }, + { + "filename": "CRIT", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 17, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 16, + "h": 8 + }, + "frame": { + "x": 36, + "y": 0, + "w": 16, + "h": 8 + } + }, + { + "filename": "ACC", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 12, + "h": 8 + }, + "frame": { + "x": 52, + "y": 0, + "w": 12, + "h": 8 + } + }, + { + "filename": "ATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 12, + "h": 8 + }, + "frame": { + "x": 64, + "y": 0, + "w": 12, + "h": 8 + } + }, + { + "filename": "DEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 12, + "h": 8 + }, + "frame": { + "x": 76, + "y": 0, + "w": 12, + "h": 8 + } + }, + { + "filename": "EVA", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 12, + "h": 8 + }, + "frame": { + "x": 88, + "y": 0, + "w": 12, + "h": 8 + } + }, + { + "filename": "SPD", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 12, + "h": 8 + }, + "frame": { + "x": 100, + "y": 0, + "w": 12, + "h": 8 + } + }, + { + "filename": "HP", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 9, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 8, + "h": 8 + }, + "frame": { + "x": 112, + "y": 0, + "w": 8, + "h": 8 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:40d30205ce8efd40dfa86cd11b0491d6:7076db6ed74199dcfb38fc8cd4d4a0e8:05882267d3999884e0491134e98b1b53$" + } +} diff --git a/public/images/ui/legacy/text_images/fr/battle_ui/pbinfo_stat_fr.png b/public/images/ui/legacy/text_images/fr/battle_ui/pbinfo_stat_fr.png new file mode 100644 index 00000000000..1919561ddfe Binary files /dev/null and b/public/images/ui/legacy/text_images/fr/battle_ui/pbinfo_stat_fr.png differ diff --git a/public/images/ui/legacy/text_images/fr/party_ui/party_slot_overlay_hp_fr.png b/public/images/ui/legacy/text_images/fr/party_ui/party_slot_overlay_hp_fr.png new file mode 100644 index 00000000000..55468e4b1d1 Binary files /dev/null and b/public/images/ui/legacy/text_images/fr/party_ui/party_slot_overlay_hp_fr.png differ diff --git a/public/images/ui/legacy/text_images/fr/party_ui/party_slot_overlay_lv_fr.png b/public/images/ui/legacy/text_images/fr/party_ui/party_slot_overlay_lv_fr.png new file mode 100644 index 00000000000..e7bbec23b07 Binary files /dev/null and b/public/images/ui/legacy/text_images/fr/party_ui/party_slot_overlay_lv_fr.png differ diff --git a/public/images/ui/legacy/text_images/fr/summary/summary_dexnb_label_fr.png b/public/images/ui/legacy/text_images/fr/summary/summary_dexnb_label_fr.png new file mode 100644 index 00000000000..5477e3385a8 Binary files /dev/null and b/public/images/ui/legacy/text_images/fr/summary/summary_dexnb_label_fr.png differ diff --git a/public/images/ui/legacy/text_images/fr/summary/summary_dexnb_label_overlay_shiny_fr.png b/public/images/ui/legacy/text_images/fr/summary/summary_dexnb_label_overlay_shiny_fr.png new file mode 100644 index 00000000000..1640e46caa0 Binary files /dev/null and b/public/images/ui/legacy/text_images/fr/summary/summary_dexnb_label_overlay_shiny_fr.png differ diff --git a/public/images/ui/legacy/text_images/fr/summary/summary_moves_descriptions_title_fr.png b/public/images/ui/legacy/text_images/fr/summary/summary_moves_descriptions_title_fr.png new file mode 100644 index 00000000000..e83e8cafbfc Binary files /dev/null and b/public/images/ui/legacy/text_images/fr/summary/summary_moves_descriptions_title_fr.png differ diff --git a/public/images/ui/legacy/text_images/fr/summary/summary_moves_effect_title_fr.png b/public/images/ui/legacy/text_images/fr/summary/summary_moves_effect_title_fr.png new file mode 100644 index 00000000000..49f4e11096a Binary files /dev/null and b/public/images/ui/legacy/text_images/fr/summary/summary_moves_effect_title_fr.png differ diff --git a/public/images/ui/legacy/text_images/fr/summary/summary_moves_moves_title_fr.png b/public/images/ui/legacy/text_images/fr/summary/summary_moves_moves_title_fr.png new file mode 100644 index 00000000000..1fd7d72c307 Binary files /dev/null and b/public/images/ui/legacy/text_images/fr/summary/summary_moves_moves_title_fr.png differ diff --git a/public/images/ui/legacy/text_images/fr/summary/summary_moves_overlay_pp_fr.png b/public/images/ui/legacy/text_images/fr/summary/summary_moves_overlay_pp_fr.png new file mode 100644 index 00000000000..9babffc0429 Binary files /dev/null and b/public/images/ui/legacy/text_images/fr/summary/summary_moves_overlay_pp_fr.png differ diff --git a/public/images/ui/legacy/text_images/fr/summary/summary_profile_ability_fr.png b/public/images/ui/legacy/text_images/fr/summary/summary_profile_ability_fr.png new file mode 100644 index 00000000000..3354b40adfe Binary files /dev/null and b/public/images/ui/legacy/text_images/fr/summary/summary_profile_ability_fr.png differ diff --git a/public/images/ui/legacy/text_images/fr/summary/summary_profile_memo_title_fr.png b/public/images/ui/legacy/text_images/fr/summary/summary_profile_memo_title_fr.png new file mode 100644 index 00000000000..54c6beb4428 Binary files /dev/null and b/public/images/ui/legacy/text_images/fr/summary/summary_profile_memo_title_fr.png differ diff --git a/public/images/ui/legacy/text_images/fr/summary/summary_profile_passive_fr.png b/public/images/ui/legacy/text_images/fr/summary/summary_profile_passive_fr.png new file mode 100644 index 00000000000..f5d2c98a21c Binary files /dev/null and b/public/images/ui/legacy/text_images/fr/summary/summary_profile_passive_fr.png differ diff --git a/public/images/ui/legacy/text_images/fr/summary/summary_profile_profile_title_fr.png b/public/images/ui/legacy/text_images/fr/summary/summary_profile_profile_title_fr.png new file mode 100644 index 00000000000..bccba2d87df Binary files /dev/null and b/public/images/ui/legacy/text_images/fr/summary/summary_profile_profile_title_fr.png differ diff --git a/public/images/ui/legacy/text_images/fr/summary/summary_stats_exp_title_fr.png b/public/images/ui/legacy/text_images/fr/summary/summary_stats_exp_title_fr.png new file mode 100644 index 00000000000..32d41d44be4 Binary files /dev/null and b/public/images/ui/legacy/text_images/fr/summary/summary_stats_exp_title_fr.png differ diff --git a/public/images/ui/legacy/text_images/fr/summary/summary_stats_expbar_title_fr.png b/public/images/ui/legacy/text_images/fr/summary/summary_stats_expbar_title_fr.png new file mode 100644 index 00000000000..da999975932 Binary files /dev/null and b/public/images/ui/legacy/text_images/fr/summary/summary_stats_expbar_title_fr.png differ diff --git a/public/images/ui/legacy/text_images/fr/summary/summary_stats_item_title_fr.png b/public/images/ui/legacy/text_images/fr/summary/summary_stats_item_title_fr.png new file mode 100644 index 00000000000..45c10e8c907 Binary files /dev/null and b/public/images/ui/legacy/text_images/fr/summary/summary_stats_item_title_fr.png differ diff --git a/public/images/ui/legacy/text_images/fr/summary/summary_stats_stats_title_fr.png b/public/images/ui/legacy/text_images/fr/summary/summary_stats_stats_title_fr.png new file mode 100644 index 00000000000..63fe6a694af Binary files /dev/null and b/public/images/ui/legacy/text_images/fr/summary/summary_stats_stats_title_fr.png differ diff --git a/public/images/ui/legacy/text_images/fr/summary/summary_tabs_1_fr.png b/public/images/ui/legacy/text_images/fr/summary/summary_tabs_1_fr.png new file mode 100644 index 00000000000..379768ea310 Binary files /dev/null and b/public/images/ui/legacy/text_images/fr/summary/summary_tabs_1_fr.png differ diff --git a/public/images/ui/legacy/text_images/fr/summary/summary_tabs_2_fr.png b/public/images/ui/legacy/text_images/fr/summary/summary_tabs_2_fr.png new file mode 100644 index 00000000000..2a04879b32b Binary files /dev/null and b/public/images/ui/legacy/text_images/fr/summary/summary_tabs_2_fr.png differ diff --git a/public/images/ui/legacy/text_images/fr/summary/summary_tabs_3_fr.png b/public/images/ui/legacy/text_images/fr/summary/summary_tabs_3_fr.png new file mode 100644 index 00000000000..ef65774f744 Binary files /dev/null and b/public/images/ui/legacy/text_images/fr/summary/summary_tabs_3_fr.png differ diff --git a/public/images/ui/legacy/text_images/it/battle_ui/overlay_exp_label_it.png b/public/images/ui/legacy/text_images/it/battle_ui/overlay_exp_label_it.png new file mode 100644 index 00000000000..3a888a5ffb0 Binary files /dev/null and b/public/images/ui/legacy/text_images/it/battle_ui/overlay_exp_label_it.png differ diff --git a/public/images/ui/legacy/text_images/it/battle_ui/overlay_hp_label_boss_it.png b/public/images/ui/legacy/text_images/it/battle_ui/overlay_hp_label_boss_it.png new file mode 100644 index 00000000000..283d63fb235 Binary files /dev/null and b/public/images/ui/legacy/text_images/it/battle_ui/overlay_hp_label_boss_it.png differ diff --git a/public/images/ui/legacy/text_images/it/battle_ui/overlay_hp_label_it.png b/public/images/ui/legacy/text_images/it/battle_ui/overlay_hp_label_it.png new file mode 100644 index 00000000000..4f388b70a75 Binary files /dev/null and b/public/images/ui/legacy/text_images/it/battle_ui/overlay_hp_label_it.png differ diff --git a/public/images/ui/legacy/text_images/it/battle_ui/overlay_lv_it.png b/public/images/ui/legacy/text_images/it/battle_ui/overlay_lv_it.png new file mode 100644 index 00000000000..579c684d766 Binary files /dev/null and b/public/images/ui/legacy/text_images/it/battle_ui/overlay_lv_it.png differ diff --git a/public/images/ui/legacy/text_images/it/battle_ui/pbinfo_stat_it.json b/public/images/ui/legacy/text_images/it/battle_ui/pbinfo_stat_it.json new file mode 100644 index 00000000000..1971bb61221 --- /dev/null +++ b/public/images/ui/legacy/text_images/it/battle_ui/pbinfo_stat_it.json @@ -0,0 +1,209 @@ +{ + "textures": [ + { + "image": "pbinfo_stat_it.png", + "format": "RGBA8888", + "size": { + "w": 112, + "h": 6 + }, + "scale": 1, + "frames": [ + { + "filename": "SPATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 18, + "h": 6 + }, + "frame": { + "x": 0, + "y": 0, + "w": 18, + "h": 6 + } + }, + { + "filename": "SPDEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 18, + "h": 6 + }, + "frame": { + "x": 18, + "y": 0, + "w": 18, + "h": 6 + } + }, + { + "filename": "CRIT", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 17, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 16, + "h": 6 + }, + "frame": { + "x": 36, + "y": 0, + "w": 16, + "h": 6 + } + }, + { + "filename": "ACC", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 52, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "ATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 64, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "DEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 76, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "EVA", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 88, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "SPD", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 100, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "HP", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 9, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 8, + "h": 6 + }, + "frame": { + "x": 112, + "y": 0, + "w": 8, + "h": 6 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:40d30205ce8efd40dfa86cd11b0491d6:7076db6ed74199dcfb38fc8cd4d4a0e8:05882267d3999884e0491134e98b1b53$" + } +} diff --git a/public/images/ui/legacy/text_images/it/battle_ui/pbinfo_stat_it.png b/public/images/ui/legacy/text_images/it/battle_ui/pbinfo_stat_it.png new file mode 100644 index 00000000000..ced53e91a6e Binary files /dev/null and b/public/images/ui/legacy/text_images/it/battle_ui/pbinfo_stat_it.png differ diff --git a/public/images/ui/legacy/text_images/it/party_ui/party_slot_overlay_hp_it.png b/public/images/ui/legacy/text_images/it/party_ui/party_slot_overlay_hp_it.png new file mode 100644 index 00000000000..981d8573aca Binary files /dev/null and b/public/images/ui/legacy/text_images/it/party_ui/party_slot_overlay_hp_it.png differ diff --git a/public/images/ui/legacy/text_images/it/party_ui/party_slot_overlay_lv_it.png b/public/images/ui/legacy/text_images/it/party_ui/party_slot_overlay_lv_it.png new file mode 100644 index 00000000000..5338254b4d0 Binary files /dev/null and b/public/images/ui/legacy/text_images/it/party_ui/party_slot_overlay_lv_it.png differ diff --git a/public/images/ui/legacy/text_images/it/summary/summary_dexnb_label_it.png b/public/images/ui/legacy/text_images/it/summary/summary_dexnb_label_it.png new file mode 100644 index 00000000000..5477e3385a8 Binary files /dev/null and b/public/images/ui/legacy/text_images/it/summary/summary_dexnb_label_it.png differ diff --git a/public/images/ui/legacy/text_images/it/summary/summary_dexnb_label_overlay_shiny_it.png b/public/images/ui/legacy/text_images/it/summary/summary_dexnb_label_overlay_shiny_it.png new file mode 100644 index 00000000000..1640e46caa0 Binary files /dev/null and b/public/images/ui/legacy/text_images/it/summary/summary_dexnb_label_overlay_shiny_it.png differ diff --git a/public/images/ui/legacy/text_images/it/summary/summary_moves_descriptions_title_it.png b/public/images/ui/legacy/text_images/it/summary/summary_moves_descriptions_title_it.png new file mode 100644 index 00000000000..e0bf21396e5 Binary files /dev/null and b/public/images/ui/legacy/text_images/it/summary/summary_moves_descriptions_title_it.png differ diff --git a/public/images/ui/legacy/text_images/it/summary/summary_moves_effect_title_it.png b/public/images/ui/legacy/text_images/it/summary/summary_moves_effect_title_it.png new file mode 100644 index 00000000000..99f9dfeb2c3 Binary files /dev/null and b/public/images/ui/legacy/text_images/it/summary/summary_moves_effect_title_it.png differ diff --git a/public/images/ui/legacy/text_images/it/summary/summary_moves_moves_title_it.png b/public/images/ui/legacy/text_images/it/summary/summary_moves_moves_title_it.png new file mode 100644 index 00000000000..e56e3f4b336 Binary files /dev/null and b/public/images/ui/legacy/text_images/it/summary/summary_moves_moves_title_it.png differ diff --git a/public/images/ui/legacy/text_images/it/summary/summary_moves_overlay_pp_it.png b/public/images/ui/legacy/text_images/it/summary/summary_moves_overlay_pp_it.png new file mode 100644 index 00000000000..9babffc0429 Binary files /dev/null and b/public/images/ui/legacy/text_images/it/summary/summary_moves_overlay_pp_it.png differ diff --git a/public/images/ui/legacy/text_images/it/summary/summary_profile_ability_it.png b/public/images/ui/legacy/text_images/it/summary/summary_profile_ability_it.png new file mode 100644 index 00000000000..bb915da37ee Binary files /dev/null and b/public/images/ui/legacy/text_images/it/summary/summary_profile_ability_it.png differ diff --git a/public/images/ui/legacy/text_images/it/summary/summary_profile_memo_title_it.png b/public/images/ui/legacy/text_images/it/summary/summary_profile_memo_title_it.png new file mode 100644 index 00000000000..0c81cd56f06 Binary files /dev/null and b/public/images/ui/legacy/text_images/it/summary/summary_profile_memo_title_it.png differ diff --git a/public/images/ui/legacy/text_images/it/summary/summary_profile_passive_it.png b/public/images/ui/legacy/text_images/it/summary/summary_profile_passive_it.png new file mode 100644 index 00000000000..a072b663d25 Binary files /dev/null and b/public/images/ui/legacy/text_images/it/summary/summary_profile_passive_it.png differ diff --git a/public/images/ui/legacy/text_images/it/summary/summary_profile_profile_title_it.png b/public/images/ui/legacy/text_images/it/summary/summary_profile_profile_title_it.png new file mode 100644 index 00000000000..169b0a7b8e7 Binary files /dev/null and b/public/images/ui/legacy/text_images/it/summary/summary_profile_profile_title_it.png differ diff --git a/public/images/ui/legacy/text_images/it/summary/summary_stats_exp_title_it.png b/public/images/ui/legacy/text_images/it/summary/summary_stats_exp_title_it.png new file mode 100644 index 00000000000..a3a1aa4c402 Binary files /dev/null and b/public/images/ui/legacy/text_images/it/summary/summary_stats_exp_title_it.png differ diff --git a/public/images/ui/legacy/text_images/it/summary/summary_stats_expbar_title_it.png b/public/images/ui/legacy/text_images/it/summary/summary_stats_expbar_title_it.png new file mode 100644 index 00000000000..aa8eee71613 Binary files /dev/null and b/public/images/ui/legacy/text_images/it/summary/summary_stats_expbar_title_it.png differ diff --git a/public/images/ui/legacy/text_images/it/summary/summary_stats_item_title_it.png b/public/images/ui/legacy/text_images/it/summary/summary_stats_item_title_it.png new file mode 100644 index 00000000000..a93695a48c8 Binary files /dev/null and b/public/images/ui/legacy/text_images/it/summary/summary_stats_item_title_it.png differ diff --git a/public/images/ui/legacy/text_images/it/summary/summary_stats_stats_title_it.png b/public/images/ui/legacy/text_images/it/summary/summary_stats_stats_title_it.png new file mode 100644 index 00000000000..998db7fc7e3 Binary files /dev/null and b/public/images/ui/legacy/text_images/it/summary/summary_stats_stats_title_it.png differ diff --git a/public/images/ui/legacy/text_images/it/summary/summary_tabs_1_it.png b/public/images/ui/legacy/text_images/it/summary/summary_tabs_1_it.png new file mode 100644 index 00000000000..379768ea310 Binary files /dev/null and b/public/images/ui/legacy/text_images/it/summary/summary_tabs_1_it.png differ diff --git a/public/images/ui/legacy/text_images/it/summary/summary_tabs_2_it.png b/public/images/ui/legacy/text_images/it/summary/summary_tabs_2_it.png new file mode 100644 index 00000000000..2a04879b32b Binary files /dev/null and b/public/images/ui/legacy/text_images/it/summary/summary_tabs_2_it.png differ diff --git a/public/images/ui/legacy/text_images/it/summary/summary_tabs_3_it.png b/public/images/ui/legacy/text_images/it/summary/summary_tabs_3_it.png new file mode 100644 index 00000000000..ef65774f744 Binary files /dev/null and b/public/images/ui/legacy/text_images/it/summary/summary_tabs_3_it.png differ diff --git a/public/images/ui/legacy/text_images/ja/battle_ui/overlay_exp_label_ja.png b/public/images/ui/legacy/text_images/ja/battle_ui/overlay_exp_label_ja.png new file mode 100644 index 00000000000..40b5e8925a1 Binary files /dev/null and b/public/images/ui/legacy/text_images/ja/battle_ui/overlay_exp_label_ja.png differ diff --git a/public/images/ui/legacy/text_images/ja/battle_ui/overlay_hp_label_boss_ja.png b/public/images/ui/legacy/text_images/ja/battle_ui/overlay_hp_label_boss_ja.png new file mode 100644 index 00000000000..283d63fb235 Binary files /dev/null and b/public/images/ui/legacy/text_images/ja/battle_ui/overlay_hp_label_boss_ja.png differ diff --git a/public/images/ui/legacy/text_images/ja/battle_ui/overlay_hp_label_ja.png b/public/images/ui/legacy/text_images/ja/battle_ui/overlay_hp_label_ja.png new file mode 100644 index 00000000000..67824c7ee4e Binary files /dev/null and b/public/images/ui/legacy/text_images/ja/battle_ui/overlay_hp_label_ja.png differ diff --git a/public/images/ui/legacy/text_images/ja/battle_ui/overlay_lv_ja.png b/public/images/ui/legacy/text_images/ja/battle_ui/overlay_lv_ja.png new file mode 100644 index 00000000000..ea32ac03ee2 Binary files /dev/null and b/public/images/ui/legacy/text_images/ja/battle_ui/overlay_lv_ja.png differ diff --git a/public/images/ui/legacy/text_images/ja/battle_ui/pbinfo_stat_ja.json b/public/images/ui/legacy/text_images/ja/battle_ui/pbinfo_stat_ja.json new file mode 100644 index 00000000000..d8907e8e68c --- /dev/null +++ b/public/images/ui/legacy/text_images/ja/battle_ui/pbinfo_stat_ja.json @@ -0,0 +1,209 @@ +{ + "textures": [ + { + "image": "pbinfo_stat_ja.png", + "format": "RGBA8888", + "size": { + "w": 112, + "h": 6 + }, + "scale": 1, + "frames": [ + { + "filename": "SPATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 18, + "h": 6 + }, + "frame": { + "x": 0, + "y": 0, + "w": 18, + "h": 6 + } + }, + { + "filename": "SPDEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 18, + "h": 6 + }, + "frame": { + "x": 18, + "y": 0, + "w": 18, + "h": 6 + } + }, + { + "filename": "CRIT", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 17, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 16, + "h": 6 + }, + "frame": { + "x": 36, + "y": 0, + "w": 16, + "h": 6 + } + }, + { + "filename": "ACC", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 52, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "ATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 64, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "DEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 76, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "EVA", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 88, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "SPD", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 100, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "HP", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 9, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 8, + "h": 6 + }, + "frame": { + "x": 112, + "y": 0, + "w": 8, + "h": 6 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:40d30205ce8efd40dfa86cd11b0491d6:7076db6ed74199dcfb38fc8cd4d4a0e8:05882267d3999884e0491134e98b1b53$" + } +} diff --git a/public/images/ui/legacy/text_images/ja/battle_ui/pbinfo_stat_ja.png b/public/images/ui/legacy/text_images/ja/battle_ui/pbinfo_stat_ja.png new file mode 100644 index 00000000000..c729e7a2207 Binary files /dev/null and b/public/images/ui/legacy/text_images/ja/battle_ui/pbinfo_stat_ja.png differ diff --git a/public/images/ui/legacy/text_images/ja/party_ui/party_slot_overlay_hp_ja.png b/public/images/ui/legacy/text_images/ja/party_ui/party_slot_overlay_hp_ja.png new file mode 100644 index 00000000000..a78ac090d3b Binary files /dev/null and b/public/images/ui/legacy/text_images/ja/party_ui/party_slot_overlay_hp_ja.png differ diff --git a/public/images/ui/legacy/text_images/ja/party_ui/party_slot_overlay_lv_ja.png b/public/images/ui/legacy/text_images/ja/party_ui/party_slot_overlay_lv_ja.png new file mode 100644 index 00000000000..11bb545c7af Binary files /dev/null and b/public/images/ui/legacy/text_images/ja/party_ui/party_slot_overlay_lv_ja.png differ diff --git a/public/images/ui/legacy/text_images/ja/summary/summary_dexnb_label_ja.png b/public/images/ui/legacy/text_images/ja/summary/summary_dexnb_label_ja.png new file mode 100644 index 00000000000..bf568c486aa Binary files /dev/null and b/public/images/ui/legacy/text_images/ja/summary/summary_dexnb_label_ja.png differ diff --git a/public/images/ui/legacy/text_images/ja/summary/summary_dexnb_label_overlay_shiny_ja.png b/public/images/ui/legacy/text_images/ja/summary/summary_dexnb_label_overlay_shiny_ja.png new file mode 100644 index 00000000000..bb2436738a8 Binary files /dev/null and b/public/images/ui/legacy/text_images/ja/summary/summary_dexnb_label_overlay_shiny_ja.png differ diff --git a/public/images/ui/legacy/text_images/ja/summary/summary_moves_descriptions_title_ja.png b/public/images/ui/legacy/text_images/ja/summary/summary_moves_descriptions_title_ja.png new file mode 100644 index 00000000000..d844e844244 Binary files /dev/null and b/public/images/ui/legacy/text_images/ja/summary/summary_moves_descriptions_title_ja.png differ diff --git a/public/images/ui/legacy/text_images/ja/summary/summary_moves_effect_title_ja.png b/public/images/ui/legacy/text_images/ja/summary/summary_moves_effect_title_ja.png new file mode 100644 index 00000000000..a75452f1299 Binary files /dev/null and b/public/images/ui/legacy/text_images/ja/summary/summary_moves_effect_title_ja.png differ diff --git a/public/images/ui/legacy/text_images/ja/summary/summary_moves_moves_title_ja.png b/public/images/ui/legacy/text_images/ja/summary/summary_moves_moves_title_ja.png new file mode 100644 index 00000000000..6492c3ecf7c Binary files /dev/null and b/public/images/ui/legacy/text_images/ja/summary/summary_moves_moves_title_ja.png differ diff --git a/public/images/ui/legacy/text_images/ja/summary/summary_moves_overlay_pp_ja.png b/public/images/ui/legacy/text_images/ja/summary/summary_moves_overlay_pp_ja.png new file mode 100644 index 00000000000..9babffc0429 Binary files /dev/null and b/public/images/ui/legacy/text_images/ja/summary/summary_moves_overlay_pp_ja.png differ diff --git a/public/images/ui/legacy/text_images/ja/summary/summary_profile_ability_ja.png b/public/images/ui/legacy/text_images/ja/summary/summary_profile_ability_ja.png new file mode 100644 index 00000000000..6c82a863a69 Binary files /dev/null and b/public/images/ui/legacy/text_images/ja/summary/summary_profile_ability_ja.png differ diff --git a/public/images/ui/legacy/text_images/ja/summary/summary_profile_memo_title_ja.png b/public/images/ui/legacy/text_images/ja/summary/summary_profile_memo_title_ja.png new file mode 100644 index 00000000000..3f5a4536817 Binary files /dev/null and b/public/images/ui/legacy/text_images/ja/summary/summary_profile_memo_title_ja.png differ diff --git a/public/images/ui/legacy/text_images/ja/summary/summary_profile_passive_ja.png b/public/images/ui/legacy/text_images/ja/summary/summary_profile_passive_ja.png new file mode 100644 index 00000000000..3bfed88c7da Binary files /dev/null and b/public/images/ui/legacy/text_images/ja/summary/summary_profile_passive_ja.png differ diff --git a/public/images/ui/legacy/text_images/ja/summary/summary_profile_profile_title_ja.png b/public/images/ui/legacy/text_images/ja/summary/summary_profile_profile_title_ja.png new file mode 100644 index 00000000000..a05cba49247 Binary files /dev/null and b/public/images/ui/legacy/text_images/ja/summary/summary_profile_profile_title_ja.png differ diff --git a/public/images/ui/legacy/text_images/ja/summary/summary_stats_exp_title_ja.png b/public/images/ui/legacy/text_images/ja/summary/summary_stats_exp_title_ja.png new file mode 100644 index 00000000000..0bc237a7e6b Binary files /dev/null and b/public/images/ui/legacy/text_images/ja/summary/summary_stats_exp_title_ja.png differ diff --git a/public/images/ui/legacy/text_images/ja/summary/summary_stats_expbar_title_ja.png b/public/images/ui/legacy/text_images/ja/summary/summary_stats_expbar_title_ja.png new file mode 100644 index 00000000000..e9dfb10e5d6 Binary files /dev/null and b/public/images/ui/legacy/text_images/ja/summary/summary_stats_expbar_title_ja.png differ diff --git a/public/images/ui/legacy/text_images/ja/summary/summary_stats_item_title_ja.png b/public/images/ui/legacy/text_images/ja/summary/summary_stats_item_title_ja.png new file mode 100644 index 00000000000..114b4d7fd3f Binary files /dev/null and b/public/images/ui/legacy/text_images/ja/summary/summary_stats_item_title_ja.png differ diff --git a/public/images/ui/legacy/text_images/ja/summary/summary_stats_stats_title_ja.png b/public/images/ui/legacy/text_images/ja/summary/summary_stats_stats_title_ja.png new file mode 100644 index 00000000000..c9f2e28fb07 Binary files /dev/null and b/public/images/ui/legacy/text_images/ja/summary/summary_stats_stats_title_ja.png differ diff --git a/public/images/ui/legacy/text_images/ja/summary/summary_tabs_1_ja.png b/public/images/ui/legacy/text_images/ja/summary/summary_tabs_1_ja.png new file mode 100644 index 00000000000..379768ea310 Binary files /dev/null and b/public/images/ui/legacy/text_images/ja/summary/summary_tabs_1_ja.png differ diff --git a/public/images/ui/legacy/text_images/ja/summary/summary_tabs_2_ja.png b/public/images/ui/legacy/text_images/ja/summary/summary_tabs_2_ja.png new file mode 100644 index 00000000000..2a04879b32b Binary files /dev/null and b/public/images/ui/legacy/text_images/ja/summary/summary_tabs_2_ja.png differ diff --git a/public/images/ui/legacy/text_images/ja/summary/summary_tabs_3_ja.png b/public/images/ui/legacy/text_images/ja/summary/summary_tabs_3_ja.png new file mode 100644 index 00000000000..ef65774f744 Binary files /dev/null and b/public/images/ui/legacy/text_images/ja/summary/summary_tabs_3_ja.png differ diff --git a/public/images/ui/legacy/text_images/ko/battle_ui/overlay_exp_label_ko.png b/public/images/ui/legacy/text_images/ko/battle_ui/overlay_exp_label_ko.png new file mode 100644 index 00000000000..40b5e8925a1 Binary files /dev/null and b/public/images/ui/legacy/text_images/ko/battle_ui/overlay_exp_label_ko.png differ diff --git a/public/images/ui/legacy/text_images/ko/battle_ui/overlay_hp_label_boss_ko.png b/public/images/ui/legacy/text_images/ko/battle_ui/overlay_hp_label_boss_ko.png new file mode 100644 index 00000000000..283d63fb235 Binary files /dev/null and b/public/images/ui/legacy/text_images/ko/battle_ui/overlay_hp_label_boss_ko.png differ diff --git a/public/images/ui/legacy/text_images/ko/battle_ui/overlay_hp_label_ko.png b/public/images/ui/legacy/text_images/ko/battle_ui/overlay_hp_label_ko.png new file mode 100644 index 00000000000..67824c7ee4e Binary files /dev/null and b/public/images/ui/legacy/text_images/ko/battle_ui/overlay_hp_label_ko.png differ diff --git a/public/images/ui/legacy/text_images/ko/battle_ui/overlay_lv_ko.png b/public/images/ui/legacy/text_images/ko/battle_ui/overlay_lv_ko.png new file mode 100644 index 00000000000..ea32ac03ee2 Binary files /dev/null and b/public/images/ui/legacy/text_images/ko/battle_ui/overlay_lv_ko.png differ diff --git a/public/images/ui/legacy/text_images/ko/battle_ui/pbinfo_stat_ko.json b/public/images/ui/legacy/text_images/ko/battle_ui/pbinfo_stat_ko.json new file mode 100644 index 00000000000..359e3a5b76f --- /dev/null +++ b/public/images/ui/legacy/text_images/ko/battle_ui/pbinfo_stat_ko.json @@ -0,0 +1,209 @@ +{ + "textures": [ + { + "image": "pbinfo_stat_ko.png", + "format": "RGBA8888", + "size": { + "w": 112, + "h": 6 + }, + "scale": 1, + "frames": [ + { + "filename": "SPATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 18, + "h": 6 + }, + "frame": { + "x": 0, + "y": 0, + "w": 18, + "h": 6 + } + }, + { + "filename": "SPDEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 18, + "h": 6 + }, + "frame": { + "x": 18, + "y": 0, + "w": 18, + "h": 6 + } + }, + { + "filename": "CRIT", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 17, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 16, + "h": 6 + }, + "frame": { + "x": 36, + "y": 0, + "w": 16, + "h": 6 + } + }, + { + "filename": "ACC", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 52, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "ATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 64, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "DEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 76, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "EVA", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 88, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "SPD", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 100, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "HP", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 9, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 8, + "h": 6 + }, + "frame": { + "x": 112, + "y": 0, + "w": 8, + "h": 6 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:40d30205ce8efd40dfa86cd11b0491d6:7076db6ed74199dcfb38fc8cd4d4a0e8:05882267d3999884e0491134e98b1b53$" + } +} diff --git a/public/images/ui/legacy/text_images/ko/battle_ui/pbinfo_stat_ko.png b/public/images/ui/legacy/text_images/ko/battle_ui/pbinfo_stat_ko.png new file mode 100644 index 00000000000..c729e7a2207 Binary files /dev/null and b/public/images/ui/legacy/text_images/ko/battle_ui/pbinfo_stat_ko.png differ diff --git a/public/images/ui/legacy/text_images/ko/party_ui/party_slot_overlay_hp_ko.png b/public/images/ui/legacy/text_images/ko/party_ui/party_slot_overlay_hp_ko.png new file mode 100644 index 00000000000..a78ac090d3b Binary files /dev/null and b/public/images/ui/legacy/text_images/ko/party_ui/party_slot_overlay_hp_ko.png differ diff --git a/public/images/ui/legacy/text_images/ko/party_ui/party_slot_overlay_lv_ko.png b/public/images/ui/legacy/text_images/ko/party_ui/party_slot_overlay_lv_ko.png new file mode 100644 index 00000000000..11bb545c7af Binary files /dev/null and b/public/images/ui/legacy/text_images/ko/party_ui/party_slot_overlay_lv_ko.png differ diff --git a/public/images/ui/legacy/text_images/ko/summary/summary_dexnb_label_ko.png b/public/images/ui/legacy/text_images/ko/summary/summary_dexnb_label_ko.png new file mode 100644 index 00000000000..bf568c486aa Binary files /dev/null and b/public/images/ui/legacy/text_images/ko/summary/summary_dexnb_label_ko.png differ diff --git a/public/images/ui/legacy/text_images/ko/summary/summary_dexnb_label_overlay_shiny_ko.png b/public/images/ui/legacy/text_images/ko/summary/summary_dexnb_label_overlay_shiny_ko.png new file mode 100644 index 00000000000..bb2436738a8 Binary files /dev/null and b/public/images/ui/legacy/text_images/ko/summary/summary_dexnb_label_overlay_shiny_ko.png differ diff --git a/public/images/ui/legacy/text_images/ko/summary/summary_moves_descriptions_title_ko.png b/public/images/ui/legacy/text_images/ko/summary/summary_moves_descriptions_title_ko.png new file mode 100644 index 00000000000..350bd607aed Binary files /dev/null and b/public/images/ui/legacy/text_images/ko/summary/summary_moves_descriptions_title_ko.png differ diff --git a/public/images/ui/legacy/text_images/ko/summary/summary_moves_effect_title_ko.png b/public/images/ui/legacy/text_images/ko/summary/summary_moves_effect_title_ko.png new file mode 100644 index 00000000000..f90ac18fc4e Binary files /dev/null and b/public/images/ui/legacy/text_images/ko/summary/summary_moves_effect_title_ko.png differ diff --git a/public/images/ui/legacy/text_images/ko/summary/summary_moves_moves_title_ko.png b/public/images/ui/legacy/text_images/ko/summary/summary_moves_moves_title_ko.png new file mode 100644 index 00000000000..d020d8a77cb Binary files /dev/null and b/public/images/ui/legacy/text_images/ko/summary/summary_moves_moves_title_ko.png differ diff --git a/public/images/ui/legacy/text_images/ko/summary/summary_moves_overlay_pp_ko.png b/public/images/ui/legacy/text_images/ko/summary/summary_moves_overlay_pp_ko.png new file mode 100644 index 00000000000..9babffc0429 Binary files /dev/null and b/public/images/ui/legacy/text_images/ko/summary/summary_moves_overlay_pp_ko.png differ diff --git a/public/images/ui/legacy/text_images/ko/summary/summary_profile_ability_ko.png b/public/images/ui/legacy/text_images/ko/summary/summary_profile_ability_ko.png new file mode 100644 index 00000000000..cdeafaf486e Binary files /dev/null and b/public/images/ui/legacy/text_images/ko/summary/summary_profile_ability_ko.png differ diff --git a/public/images/ui/legacy/text_images/ko/summary/summary_profile_memo_title_ko.png b/public/images/ui/legacy/text_images/ko/summary/summary_profile_memo_title_ko.png new file mode 100644 index 00000000000..7af960fe1df Binary files /dev/null and b/public/images/ui/legacy/text_images/ko/summary/summary_profile_memo_title_ko.png differ diff --git a/public/images/ui/legacy/text_images/ko/summary/summary_profile_passive_ko.png b/public/images/ui/legacy/text_images/ko/summary/summary_profile_passive_ko.png new file mode 100644 index 00000000000..34a13ffe836 Binary files /dev/null and b/public/images/ui/legacy/text_images/ko/summary/summary_profile_passive_ko.png differ diff --git a/public/images/ui/legacy/text_images/ko/summary/summary_profile_profile_title_ko.png b/public/images/ui/legacy/text_images/ko/summary/summary_profile_profile_title_ko.png new file mode 100644 index 00000000000..deb57b96715 Binary files /dev/null and b/public/images/ui/legacy/text_images/ko/summary/summary_profile_profile_title_ko.png differ diff --git a/public/images/ui/legacy/text_images/ko/summary/summary_stats_exp_title_ko.png b/public/images/ui/legacy/text_images/ko/summary/summary_stats_exp_title_ko.png new file mode 100644 index 00000000000..af0cb3afab8 Binary files /dev/null and b/public/images/ui/legacy/text_images/ko/summary/summary_stats_exp_title_ko.png differ diff --git a/public/images/ui/legacy/text_images/ko/summary/summary_stats_expbar_title_ko.png b/public/images/ui/legacy/text_images/ko/summary/summary_stats_expbar_title_ko.png new file mode 100644 index 00000000000..e9dfb10e5d6 Binary files /dev/null and b/public/images/ui/legacy/text_images/ko/summary/summary_stats_expbar_title_ko.png differ diff --git a/public/images/ui/legacy/text_images/ko/summary/summary_stats_item_title_ko.png b/public/images/ui/legacy/text_images/ko/summary/summary_stats_item_title_ko.png new file mode 100644 index 00000000000..6be5909e5f0 Binary files /dev/null and b/public/images/ui/legacy/text_images/ko/summary/summary_stats_item_title_ko.png differ diff --git a/public/images/ui/legacy/text_images/ko/summary/summary_stats_stats_title_ko.png b/public/images/ui/legacy/text_images/ko/summary/summary_stats_stats_title_ko.png new file mode 100644 index 00000000000..371c2be4976 Binary files /dev/null and b/public/images/ui/legacy/text_images/ko/summary/summary_stats_stats_title_ko.png differ diff --git a/public/images/ui/legacy/text_images/ko/summary/summary_tabs_1_ko.png b/public/images/ui/legacy/text_images/ko/summary/summary_tabs_1_ko.png new file mode 100644 index 00000000000..379768ea310 Binary files /dev/null and b/public/images/ui/legacy/text_images/ko/summary/summary_tabs_1_ko.png differ diff --git a/public/images/ui/legacy/text_images/ko/summary/summary_tabs_2_ko.png b/public/images/ui/legacy/text_images/ko/summary/summary_tabs_2_ko.png new file mode 100644 index 00000000000..2a04879b32b Binary files /dev/null and b/public/images/ui/legacy/text_images/ko/summary/summary_tabs_2_ko.png differ diff --git a/public/images/ui/legacy/text_images/ko/summary/summary_tabs_3_ko.png b/public/images/ui/legacy/text_images/ko/summary/summary_tabs_3_ko.png new file mode 100644 index 00000000000..ef65774f744 Binary files /dev/null and b/public/images/ui/legacy/text_images/ko/summary/summary_tabs_3_ko.png differ diff --git a/public/images/ui/legacy/text_images/pt-BR/battle_ui/overlay_exp_label_pt-BR.png b/public/images/ui/legacy/text_images/pt-BR/battle_ui/overlay_exp_label_pt-BR.png new file mode 100644 index 00000000000..acb04a84a31 Binary files /dev/null and b/public/images/ui/legacy/text_images/pt-BR/battle_ui/overlay_exp_label_pt-BR.png differ diff --git a/public/images/ui/legacy/text_images/pt-BR/battle_ui/overlay_hp_label_boss_pt-BR.png b/public/images/ui/legacy/text_images/pt-BR/battle_ui/overlay_hp_label_boss_pt-BR.png new file mode 100644 index 00000000000..283d63fb235 Binary files /dev/null and b/public/images/ui/legacy/text_images/pt-BR/battle_ui/overlay_hp_label_boss_pt-BR.png differ diff --git a/public/images/ui/legacy/text_images/pt-BR/battle_ui/overlay_hp_label_pt-BR.png b/public/images/ui/legacy/text_images/pt-BR/battle_ui/overlay_hp_label_pt-BR.png new file mode 100644 index 00000000000..4f388b70a75 Binary files /dev/null and b/public/images/ui/legacy/text_images/pt-BR/battle_ui/overlay_hp_label_pt-BR.png differ diff --git a/public/images/ui/legacy/text_images/pt-BR/battle_ui/overlay_lv_pt-BR.png b/public/images/ui/legacy/text_images/pt-BR/battle_ui/overlay_lv_pt-BR.png new file mode 100644 index 00000000000..7fdf26388bf Binary files /dev/null and b/public/images/ui/legacy/text_images/pt-BR/battle_ui/overlay_lv_pt-BR.png differ diff --git a/public/images/ui/legacy/text_images/pt-BR/battle_ui/pbinfo_stat_pt-BR.json b/public/images/ui/legacy/text_images/pt-BR/battle_ui/pbinfo_stat_pt-BR.json new file mode 100644 index 00000000000..dc7eecf1970 --- /dev/null +++ b/public/images/ui/legacy/text_images/pt-BR/battle_ui/pbinfo_stat_pt-BR.json @@ -0,0 +1,209 @@ +{ + "textures": [ + { + "image": "pbinfo_stat_pt-BR.png", + "format": "RGBA8888", + "size": { + "w": 112, + "h": 8 + }, + "scale": 1, + "frames": [ + { + "filename": "SPATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 18, + "h": 8 + }, + "frame": { + "x": 0, + "y": 0, + "w": 18, + "h": 8 + } + }, + { + "filename": "SPDEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 18, + "h": 8 + }, + "frame": { + "x": 18, + "y": 0, + "w": 18, + "h": 8 + } + }, + { + "filename": "CRIT", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 17, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 16, + "h": 8 + }, + "frame": { + "x": 36, + "y": 0, + "w": 16, + "h": 8 + } + }, + { + "filename": "ACC", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 12, + "h": 8 + }, + "frame": { + "x": 52, + "y": 0, + "w": 12, + "h": 8 + } + }, + { + "filename": "ATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 12, + "h": 8 + }, + "frame": { + "x": 64, + "y": 0, + "w": 12, + "h": 8 + } + }, + { + "filename": "DEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 12, + "h": 8 + }, + "frame": { + "x": 76, + "y": 0, + "w": 12, + "h": 8 + } + }, + { + "filename": "EVA", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 12, + "h": 8 + }, + "frame": { + "x": 88, + "y": 0, + "w": 12, + "h": 8 + } + }, + { + "filename": "SPD", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 12, + "h": 8 + }, + "frame": { + "x": 100, + "y": 0, + "w": 12, + "h": 8 + } + }, + { + "filename": "HP", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 9, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 8, + "h": 8 + }, + "frame": { + "x": 112, + "y": 0, + "w": 8, + "h": 8 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:40d30205ce8efd40dfa86cd11b0491d6:7076db6ed74199dcfb38fc8cd4d4a0e8:05882267d3999884e0491134e98b1b53$" + } +} diff --git a/public/images/ui/legacy/text_images/pt-BR/battle_ui/pbinfo_stat_pt-BR.png b/public/images/ui/legacy/text_images/pt-BR/battle_ui/pbinfo_stat_pt-BR.png new file mode 100644 index 00000000000..3dcd273bcc9 Binary files /dev/null and b/public/images/ui/legacy/text_images/pt-BR/battle_ui/pbinfo_stat_pt-BR.png differ diff --git a/public/images/ui/legacy/text_images/pt-BR/party_ui/party_slot_overlay_hp_pt-BR.png b/public/images/ui/legacy/text_images/pt-BR/party_ui/party_slot_overlay_hp_pt-BR.png new file mode 100644 index 00000000000..981d8573aca Binary files /dev/null and b/public/images/ui/legacy/text_images/pt-BR/party_ui/party_slot_overlay_hp_pt-BR.png differ diff --git a/public/images/ui/legacy/text_images/pt-BR/party_ui/party_slot_overlay_lv_pt-BR.png b/public/images/ui/legacy/text_images/pt-BR/party_ui/party_slot_overlay_lv_pt-BR.png new file mode 100644 index 00000000000..512db34fa85 Binary files /dev/null and b/public/images/ui/legacy/text_images/pt-BR/party_ui/party_slot_overlay_lv_pt-BR.png differ diff --git a/public/images/ui/legacy/text_images/pt-BR/summary/summary_dexnb_label_overlay_shiny_pt-BR.png b/public/images/ui/legacy/text_images/pt-BR/summary/summary_dexnb_label_overlay_shiny_pt-BR.png new file mode 100644 index 00000000000..3277a28a59b Binary files /dev/null and b/public/images/ui/legacy/text_images/pt-BR/summary/summary_dexnb_label_overlay_shiny_pt-BR.png differ diff --git a/public/images/ui/legacy/text_images/pt-BR/summary/summary_dexnb_label_pt-BR.png b/public/images/ui/legacy/text_images/pt-BR/summary/summary_dexnb_label_pt-BR.png new file mode 100644 index 00000000000..5477e3385a8 Binary files /dev/null and b/public/images/ui/legacy/text_images/pt-BR/summary/summary_dexnb_label_pt-BR.png differ diff --git a/public/images/ui/legacy/text_images/pt-BR/summary/summary_moves_descriptions_title_pt-BR.png b/public/images/ui/legacy/text_images/pt-BR/summary/summary_moves_descriptions_title_pt-BR.png new file mode 100644 index 00000000000..8d888143663 Binary files /dev/null and b/public/images/ui/legacy/text_images/pt-BR/summary/summary_moves_descriptions_title_pt-BR.png differ diff --git a/public/images/ui/legacy/text_images/pt-BR/summary/summary_moves_effect_title_pt-BR.png b/public/images/ui/legacy/text_images/pt-BR/summary/summary_moves_effect_title_pt-BR.png new file mode 100644 index 00000000000..83190955f2c Binary files /dev/null and b/public/images/ui/legacy/text_images/pt-BR/summary/summary_moves_effect_title_pt-BR.png differ diff --git a/public/images/ui/legacy/text_images/pt-BR/summary/summary_moves_moves_title_pt-BR.png b/public/images/ui/legacy/text_images/pt-BR/summary/summary_moves_moves_title_pt-BR.png new file mode 100644 index 00000000000..0a2d1657750 Binary files /dev/null and b/public/images/ui/legacy/text_images/pt-BR/summary/summary_moves_moves_title_pt-BR.png differ diff --git a/public/images/ui/legacy/text_images/pt-BR/summary/summary_moves_overlay_pp_pt-BR.png b/public/images/ui/legacy/text_images/pt-BR/summary/summary_moves_overlay_pp_pt-BR.png new file mode 100644 index 00000000000..9babffc0429 Binary files /dev/null and b/public/images/ui/legacy/text_images/pt-BR/summary/summary_moves_overlay_pp_pt-BR.png differ diff --git a/public/images/ui/legacy/text_images/pt-BR/summary/summary_profile_ability_pt-BR.png b/public/images/ui/legacy/text_images/pt-BR/summary/summary_profile_ability_pt-BR.png new file mode 100644 index 00000000000..28fbb5a8be9 Binary files /dev/null and b/public/images/ui/legacy/text_images/pt-BR/summary/summary_profile_ability_pt-BR.png differ diff --git a/public/images/ui/legacy/text_images/pt-BR/summary/summary_profile_memo_title_pt-BR.png b/public/images/ui/legacy/text_images/pt-BR/summary/summary_profile_memo_title_pt-BR.png new file mode 100644 index 00000000000..b7ef7c91fc5 Binary files /dev/null and b/public/images/ui/legacy/text_images/pt-BR/summary/summary_profile_memo_title_pt-BR.png differ diff --git a/public/images/ui/legacy/text_images/pt-BR/summary/summary_profile_passive_pt-BR.png b/public/images/ui/legacy/text_images/pt-BR/summary/summary_profile_passive_pt-BR.png new file mode 100644 index 00000000000..11616a74287 Binary files /dev/null and b/public/images/ui/legacy/text_images/pt-BR/summary/summary_profile_passive_pt-BR.png differ diff --git a/public/images/ui/legacy/text_images/pt-BR/summary/summary_profile_profile_title_pt-BR.png b/public/images/ui/legacy/text_images/pt-BR/summary/summary_profile_profile_title_pt-BR.png new file mode 100644 index 00000000000..a5ed0e3e169 Binary files /dev/null and b/public/images/ui/legacy/text_images/pt-BR/summary/summary_profile_profile_title_pt-BR.png differ diff --git a/public/images/ui/legacy/text_images/pt-BR/summary/summary_stats_exp_title_pt-BR.png b/public/images/ui/legacy/text_images/pt-BR/summary/summary_stats_exp_title_pt-BR.png new file mode 100644 index 00000000000..d66fa829be1 Binary files /dev/null and b/public/images/ui/legacy/text_images/pt-BR/summary/summary_stats_exp_title_pt-BR.png differ diff --git a/public/images/ui/legacy/text_images/pt-BR/summary/summary_stats_expbar_title_pt-BR.png b/public/images/ui/legacy/text_images/pt-BR/summary/summary_stats_expbar_title_pt-BR.png new file mode 100644 index 00000000000..e9dfb10e5d6 Binary files /dev/null and b/public/images/ui/legacy/text_images/pt-BR/summary/summary_stats_expbar_title_pt-BR.png differ diff --git a/public/images/ui/legacy/text_images/pt-BR/summary/summary_stats_item_title_pt-BR.png b/public/images/ui/legacy/text_images/pt-BR/summary/summary_stats_item_title_pt-BR.png new file mode 100644 index 00000000000..b9ea9400a64 Binary files /dev/null and b/public/images/ui/legacy/text_images/pt-BR/summary/summary_stats_item_title_pt-BR.png differ diff --git a/public/images/ui/legacy/text_images/pt-BR/summary/summary_stats_stats_title_pt-BR.png b/public/images/ui/legacy/text_images/pt-BR/summary/summary_stats_stats_title_pt-BR.png new file mode 100644 index 00000000000..bc9dffc2887 Binary files /dev/null and b/public/images/ui/legacy/text_images/pt-BR/summary/summary_stats_stats_title_pt-BR.png differ diff --git a/public/images/ui/legacy/text_images/pt-BR/summary/summary_tabs_1_pt-BR.png b/public/images/ui/legacy/text_images/pt-BR/summary/summary_tabs_1_pt-BR.png new file mode 100644 index 00000000000..379768ea310 Binary files /dev/null and b/public/images/ui/legacy/text_images/pt-BR/summary/summary_tabs_1_pt-BR.png differ diff --git a/public/images/ui/legacy/text_images/pt-BR/summary/summary_tabs_2_pt-BR.png b/public/images/ui/legacy/text_images/pt-BR/summary/summary_tabs_2_pt-BR.png new file mode 100644 index 00000000000..2a04879b32b Binary files /dev/null and b/public/images/ui/legacy/text_images/pt-BR/summary/summary_tabs_2_pt-BR.png differ diff --git a/public/images/ui/legacy/text_images/pt-BR/summary/summary_tabs_3_pt-BR.png b/public/images/ui/legacy/text_images/pt-BR/summary/summary_tabs_3_pt-BR.png new file mode 100644 index 00000000000..ef65774f744 Binary files /dev/null and b/public/images/ui/legacy/text_images/pt-BR/summary/summary_tabs_3_pt-BR.png differ diff --git a/public/images/ui/legacy/text_images/ro/battle_ui/overlay_exp_label_ro.png b/public/images/ui/legacy/text_images/ro/battle_ui/overlay_exp_label_ro.png new file mode 100644 index 00000000000..40b5e8925a1 Binary files /dev/null and b/public/images/ui/legacy/text_images/ro/battle_ui/overlay_exp_label_ro.png differ diff --git a/public/images/ui/legacy/text_images/ro/battle_ui/overlay_hp_label_boss_ro.png b/public/images/ui/legacy/text_images/ro/battle_ui/overlay_hp_label_boss_ro.png new file mode 100644 index 00000000000..283d63fb235 Binary files /dev/null and b/public/images/ui/legacy/text_images/ro/battle_ui/overlay_hp_label_boss_ro.png differ diff --git a/public/images/ui/legacy/text_images/ro/battle_ui/overlay_hp_label_ro.png b/public/images/ui/legacy/text_images/ro/battle_ui/overlay_hp_label_ro.png new file mode 100644 index 00000000000..67824c7ee4e Binary files /dev/null and b/public/images/ui/legacy/text_images/ro/battle_ui/overlay_hp_label_ro.png differ diff --git a/public/images/ui/legacy/text_images/ro/battle_ui/overlay_lv_ro.png b/public/images/ui/legacy/text_images/ro/battle_ui/overlay_lv_ro.png new file mode 100644 index 00000000000..ea32ac03ee2 Binary files /dev/null and b/public/images/ui/legacy/text_images/ro/battle_ui/overlay_lv_ro.png differ diff --git a/public/images/ui/legacy/text_images/ro/battle_ui/pbinfo_stat_ro.json b/public/images/ui/legacy/text_images/ro/battle_ui/pbinfo_stat_ro.json new file mode 100644 index 00000000000..8c268a77098 --- /dev/null +++ b/public/images/ui/legacy/text_images/ro/battle_ui/pbinfo_stat_ro.json @@ -0,0 +1,209 @@ +{ + "textures": [ + { + "image": "pbinfo_stat_ro.png", + "format": "RGBA8888", + "size": { + "w": 112, + "h": 6 + }, + "scale": 1, + "frames": [ + { + "filename": "SPATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 18, + "h": 6 + }, + "frame": { + "x": 0, + "y": 0, + "w": 18, + "h": 6 + } + }, + { + "filename": "SPDEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 18, + "h": 6 + }, + "frame": { + "x": 18, + "y": 0, + "w": 18, + "h": 6 + } + }, + { + "filename": "CRIT", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 17, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 16, + "h": 6 + }, + "frame": { + "x": 36, + "y": 0, + "w": 16, + "h": 6 + } + }, + { + "filename": "ACC", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 52, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "ATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 64, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "DEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 76, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "EVA", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 88, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "SPD", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 100, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "HP", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 9, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 8, + "h": 6 + }, + "frame": { + "x": 112, + "y": 0, + "w": 8, + "h": 6 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:40d30205ce8efd40dfa86cd11b0491d6:7076db6ed74199dcfb38fc8cd4d4a0e8:05882267d3999884e0491134e98b1b53$" + } +} diff --git a/public/images/ui/legacy/text_images/ro/battle_ui/pbinfo_stat_ro.png b/public/images/ui/legacy/text_images/ro/battle_ui/pbinfo_stat_ro.png new file mode 100644 index 00000000000..c729e7a2207 Binary files /dev/null and b/public/images/ui/legacy/text_images/ro/battle_ui/pbinfo_stat_ro.png differ diff --git a/public/images/ui/legacy/text_images/ro/party_ui/party_slot_overlay_hp_ro.png b/public/images/ui/legacy/text_images/ro/party_ui/party_slot_overlay_hp_ro.png new file mode 100644 index 00000000000..a78ac090d3b Binary files /dev/null and b/public/images/ui/legacy/text_images/ro/party_ui/party_slot_overlay_hp_ro.png differ diff --git a/public/images/ui/legacy/text_images/ro/party_ui/party_slot_overlay_lv_ro.png b/public/images/ui/legacy/text_images/ro/party_ui/party_slot_overlay_lv_ro.png new file mode 100644 index 00000000000..11bb545c7af Binary files /dev/null and b/public/images/ui/legacy/text_images/ro/party_ui/party_slot_overlay_lv_ro.png differ diff --git a/public/images/ui/legacy/text_images/ro/summary/summary_dexnb_label_overlay_shiny_ro.png b/public/images/ui/legacy/text_images/ro/summary/summary_dexnb_label_overlay_shiny_ro.png new file mode 100644 index 00000000000..bb2436738a8 Binary files /dev/null and b/public/images/ui/legacy/text_images/ro/summary/summary_dexnb_label_overlay_shiny_ro.png differ diff --git a/public/images/ui/legacy/text_images/ro/summary/summary_dexnb_label_ro.png b/public/images/ui/legacy/text_images/ro/summary/summary_dexnb_label_ro.png new file mode 100644 index 00000000000..bf568c486aa Binary files /dev/null and b/public/images/ui/legacy/text_images/ro/summary/summary_dexnb_label_ro.png differ diff --git a/public/images/ui/legacy/text_images/ro/summary/summary_moves_descriptions_title_ro.png b/public/images/ui/legacy/text_images/ro/summary/summary_moves_descriptions_title_ro.png new file mode 100644 index 00000000000..e83e8cafbfc Binary files /dev/null and b/public/images/ui/legacy/text_images/ro/summary/summary_moves_descriptions_title_ro.png differ diff --git a/public/images/ui/legacy/text_images/ro/summary/summary_moves_effect_title_ro.png b/public/images/ui/legacy/text_images/ro/summary/summary_moves_effect_title_ro.png new file mode 100644 index 00000000000..fbbaac0b260 Binary files /dev/null and b/public/images/ui/legacy/text_images/ro/summary/summary_moves_effect_title_ro.png differ diff --git a/public/images/ui/legacy/text_images/ro/summary/summary_moves_moves_title_ro.png b/public/images/ui/legacy/text_images/ro/summary/summary_moves_moves_title_ro.png new file mode 100644 index 00000000000..6bbb29c9c5f Binary files /dev/null and b/public/images/ui/legacy/text_images/ro/summary/summary_moves_moves_title_ro.png differ diff --git a/public/images/ui/legacy/text_images/ro/summary/summary_moves_overlay_pp_ro.png b/public/images/ui/legacy/text_images/ro/summary/summary_moves_overlay_pp_ro.png new file mode 100644 index 00000000000..9babffc0429 Binary files /dev/null and b/public/images/ui/legacy/text_images/ro/summary/summary_moves_overlay_pp_ro.png differ diff --git a/public/images/ui/legacy/text_images/ro/summary/summary_profile_ability_ro.png b/public/images/ui/legacy/text_images/ro/summary/summary_profile_ability_ro.png new file mode 100644 index 00000000000..a05c22b7d47 Binary files /dev/null and b/public/images/ui/legacy/text_images/ro/summary/summary_profile_ability_ro.png differ diff --git a/public/images/ui/legacy/text_images/ro/summary/summary_profile_memo_title_ro.png b/public/images/ui/legacy/text_images/ro/summary/summary_profile_memo_title_ro.png new file mode 100644 index 00000000000..3d69c20e57f Binary files /dev/null and b/public/images/ui/legacy/text_images/ro/summary/summary_profile_memo_title_ro.png differ diff --git a/public/images/ui/legacy/text_images/ro/summary/summary_profile_passive_ro.png b/public/images/ui/legacy/text_images/ro/summary/summary_profile_passive_ro.png new file mode 100644 index 00000000000..c026e87a215 Binary files /dev/null and b/public/images/ui/legacy/text_images/ro/summary/summary_profile_passive_ro.png differ diff --git a/public/images/ui/legacy/text_images/ro/summary/summary_profile_profile_title_ro.png b/public/images/ui/legacy/text_images/ro/summary/summary_profile_profile_title_ro.png new file mode 100644 index 00000000000..4170dccf682 Binary files /dev/null and b/public/images/ui/legacy/text_images/ro/summary/summary_profile_profile_title_ro.png differ diff --git a/public/images/ui/legacy/text_images/ro/summary/summary_stats_exp_title_ro.png b/public/images/ui/legacy/text_images/ro/summary/summary_stats_exp_title_ro.png new file mode 100644 index 00000000000..d0d8d7f81a1 Binary files /dev/null and b/public/images/ui/legacy/text_images/ro/summary/summary_stats_exp_title_ro.png differ diff --git a/public/images/ui/legacy/text_images/ro/summary/summary_stats_expbar_title_ro.png b/public/images/ui/legacy/text_images/ro/summary/summary_stats_expbar_title_ro.png new file mode 100644 index 00000000000..e9dfb10e5d6 Binary files /dev/null and b/public/images/ui/legacy/text_images/ro/summary/summary_stats_expbar_title_ro.png differ diff --git a/public/images/ui/legacy/text_images/ro/summary/summary_stats_item_title_ro.png b/public/images/ui/legacy/text_images/ro/summary/summary_stats_item_title_ro.png new file mode 100644 index 00000000000..42e08b3e52a Binary files /dev/null and b/public/images/ui/legacy/text_images/ro/summary/summary_stats_item_title_ro.png differ diff --git a/public/images/ui/legacy/text_images/ro/summary/summary_stats_stats_title_ro.png b/public/images/ui/legacy/text_images/ro/summary/summary_stats_stats_title_ro.png new file mode 100644 index 00000000000..f602a43c39d Binary files /dev/null and b/public/images/ui/legacy/text_images/ro/summary/summary_stats_stats_title_ro.png differ diff --git a/public/images/ui/legacy/text_images/ro/summary/summary_tabs_1_ro.png b/public/images/ui/legacy/text_images/ro/summary/summary_tabs_1_ro.png new file mode 100644 index 00000000000..379768ea310 Binary files /dev/null and b/public/images/ui/legacy/text_images/ro/summary/summary_tabs_1_ro.png differ diff --git a/public/images/ui/legacy/text_images/ro/summary/summary_tabs_2_ro.png b/public/images/ui/legacy/text_images/ro/summary/summary_tabs_2_ro.png new file mode 100644 index 00000000000..2a04879b32b Binary files /dev/null and b/public/images/ui/legacy/text_images/ro/summary/summary_tabs_2_ro.png differ diff --git a/public/images/ui/legacy/text_images/ro/summary/summary_tabs_3_ro.png b/public/images/ui/legacy/text_images/ro/summary/summary_tabs_3_ro.png new file mode 100644 index 00000000000..ef65774f744 Binary files /dev/null and b/public/images/ui/legacy/text_images/ro/summary/summary_tabs_3_ro.png differ diff --git a/public/images/ui/legacy/text_images/ru/battle_ui/overlay_exp_label_ru.png b/public/images/ui/legacy/text_images/ru/battle_ui/overlay_exp_label_ru.png new file mode 100644 index 00000000000..d8817108408 Binary files /dev/null and b/public/images/ui/legacy/text_images/ru/battle_ui/overlay_exp_label_ru.png differ diff --git a/public/images/ui/legacy/text_images/ru/battle_ui/overlay_hp_label_boss_ru.png b/public/images/ui/legacy/text_images/ru/battle_ui/overlay_hp_label_boss_ru.png new file mode 100644 index 00000000000..26c4d570bb1 Binary files /dev/null and b/public/images/ui/legacy/text_images/ru/battle_ui/overlay_hp_label_boss_ru.png differ diff --git a/public/images/ui/legacy/text_images/ru/battle_ui/overlay_hp_label_ru.png b/public/images/ui/legacy/text_images/ru/battle_ui/overlay_hp_label_ru.png new file mode 100644 index 00000000000..490c93f8d39 Binary files /dev/null and b/public/images/ui/legacy/text_images/ru/battle_ui/overlay_hp_label_ru.png differ diff --git a/public/images/ui/legacy/text_images/ru/battle_ui/overlay_lv_ru.png b/public/images/ui/legacy/text_images/ru/battle_ui/overlay_lv_ru.png new file mode 100644 index 00000000000..e8760560dfa Binary files /dev/null and b/public/images/ui/legacy/text_images/ru/battle_ui/overlay_lv_ru.png differ diff --git a/public/images/ui/legacy/text_images/ru/battle_ui/pbinfo_stat_ru.json b/public/images/ui/legacy/text_images/ru/battle_ui/pbinfo_stat_ru.json new file mode 100644 index 00000000000..e4e67b4da18 --- /dev/null +++ b/public/images/ui/legacy/text_images/ru/battle_ui/pbinfo_stat_ru.json @@ -0,0 +1,209 @@ +{ + "textures": [ + { + "image": "pbinfo_stat_ru.png", + "format": "RGBA8888", + "size": { + "w": 112, + "h": 7 + }, + "scale": 1, + "frames": [ + { + "filename": "SPATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 18, + "h": 7 + }, + "frame": { + "x": 0, + "y": 0, + "w": 18, + "h": 7 + } + }, + { + "filename": "SPDEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 18, + "h": 7 + }, + "frame": { + "x": 18, + "y": 0, + "w": 18, + "h": 7 + } + }, + { + "filename": "CRIT", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 17, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 16, + "h": 7 + }, + "frame": { + "x": 36, + "y": 0, + "w": 16, + "h": 7 + } + }, + { + "filename": "ACC", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 7 + }, + "frame": { + "x": 52, + "y": 0, + "w": 12, + "h": 7 + } + }, + { + "filename": "ATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 7 + }, + "frame": { + "x": 64, + "y": 0, + "w": 12, + "h": 7 + } + }, + { + "filename": "DEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 7 + }, + "frame": { + "x": 76, + "y": 0, + "w": 12, + "h": 7 + } + }, + { + "filename": "EVA", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 7 + }, + "frame": { + "x": 88, + "y": 0, + "w": 12, + "h": 7 + } + }, + { + "filename": "SPD", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 7 + }, + "frame": { + "x": 100, + "y": 0, + "w": 12, + "h": 7 + } + }, + { + "filename": "HP", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 9, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 8, + "h": 7 + }, + "frame": { + "x": 112, + "y": 0, + "w": 8, + "h": 7 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:40d30205ce8efd40dfa86cd11b0491d6:7076db6ed74199dcfb38fc8cd4d4a0e8:05882267d3999884e0491134e98b1b53$" + } +} diff --git a/public/images/ui/legacy/text_images/ru/battle_ui/pbinfo_stat_ru.png b/public/images/ui/legacy/text_images/ru/battle_ui/pbinfo_stat_ru.png new file mode 100644 index 00000000000..0899fbdbfc1 Binary files /dev/null and b/public/images/ui/legacy/text_images/ru/battle_ui/pbinfo_stat_ru.png differ diff --git a/public/images/ui/legacy/text_images/ru/party_ui/party_slot_overlay_hp_ru.png b/public/images/ui/legacy/text_images/ru/party_ui/party_slot_overlay_hp_ru.png new file mode 100644 index 00000000000..24bf5a8923f Binary files /dev/null and b/public/images/ui/legacy/text_images/ru/party_ui/party_slot_overlay_hp_ru.png differ diff --git a/public/images/ui/legacy/text_images/ru/party_ui/party_slot_overlay_lv_ru.png b/public/images/ui/legacy/text_images/ru/party_ui/party_slot_overlay_lv_ru.png new file mode 100644 index 00000000000..319d7a75fb8 Binary files /dev/null and b/public/images/ui/legacy/text_images/ru/party_ui/party_slot_overlay_lv_ru.png differ diff --git a/public/images/ui/legacy/text_images/ru/summary/summary_dexnb_label_overlay_shiny_ru.png b/public/images/ui/legacy/text_images/ru/summary/summary_dexnb_label_overlay_shiny_ru.png new file mode 100644 index 00000000000..1f8f6a1246e Binary files /dev/null and b/public/images/ui/legacy/text_images/ru/summary/summary_dexnb_label_overlay_shiny_ru.png differ diff --git a/public/images/ui/legacy/text_images/ru/summary/summary_dexnb_label_ru.png b/public/images/ui/legacy/text_images/ru/summary/summary_dexnb_label_ru.png new file mode 100644 index 00000000000..2a2e66426cb Binary files /dev/null and b/public/images/ui/legacy/text_images/ru/summary/summary_dexnb_label_ru.png differ diff --git a/public/images/ui/legacy/text_images/ru/summary/summary_moves_descriptions_title_ru.png b/public/images/ui/legacy/text_images/ru/summary/summary_moves_descriptions_title_ru.png new file mode 100644 index 00000000000..a435d6d845e Binary files /dev/null and b/public/images/ui/legacy/text_images/ru/summary/summary_moves_descriptions_title_ru.png differ diff --git a/public/images/ui/legacy/text_images/ru/summary/summary_moves_effect_title_ru.png b/public/images/ui/legacy/text_images/ru/summary/summary_moves_effect_title_ru.png new file mode 100644 index 00000000000..8bd4b965247 Binary files /dev/null and b/public/images/ui/legacy/text_images/ru/summary/summary_moves_effect_title_ru.png differ diff --git a/public/images/ui/legacy/text_images/ru/summary/summary_moves_moves_title_ru.png b/public/images/ui/legacy/text_images/ru/summary/summary_moves_moves_title_ru.png new file mode 100644 index 00000000000..94afd3226e8 Binary files /dev/null and b/public/images/ui/legacy/text_images/ru/summary/summary_moves_moves_title_ru.png differ diff --git a/public/images/ui/legacy/text_images/ru/summary/summary_moves_overlay_pp_ru.png b/public/images/ui/legacy/text_images/ru/summary/summary_moves_overlay_pp_ru.png new file mode 100644 index 00000000000..4af1f833036 Binary files /dev/null and b/public/images/ui/legacy/text_images/ru/summary/summary_moves_overlay_pp_ru.png differ diff --git a/public/images/ui/legacy/text_images/ru/summary/summary_profile_ability_ru.png b/public/images/ui/legacy/text_images/ru/summary/summary_profile_ability_ru.png new file mode 100644 index 00000000000..ddfcc6102dc Binary files /dev/null and b/public/images/ui/legacy/text_images/ru/summary/summary_profile_ability_ru.png differ diff --git a/public/images/ui/legacy/text_images/ru/summary/summary_profile_memo_title_ru.png b/public/images/ui/legacy/text_images/ru/summary/summary_profile_memo_title_ru.png new file mode 100644 index 00000000000..743a2f36454 Binary files /dev/null and b/public/images/ui/legacy/text_images/ru/summary/summary_profile_memo_title_ru.png differ diff --git a/public/images/ui/legacy/text_images/ru/summary/summary_profile_passive_ru.png b/public/images/ui/legacy/text_images/ru/summary/summary_profile_passive_ru.png new file mode 100644 index 00000000000..29179b6d75b Binary files /dev/null and b/public/images/ui/legacy/text_images/ru/summary/summary_profile_passive_ru.png differ diff --git a/public/images/ui/legacy/text_images/ru/summary/summary_profile_profile_title_ru.png b/public/images/ui/legacy/text_images/ru/summary/summary_profile_profile_title_ru.png new file mode 100644 index 00000000000..77edb538634 Binary files /dev/null and b/public/images/ui/legacy/text_images/ru/summary/summary_profile_profile_title_ru.png differ diff --git a/public/images/ui/legacy/text_images/ru/summary/summary_stats_exp_title_ru.png b/public/images/ui/legacy/text_images/ru/summary/summary_stats_exp_title_ru.png new file mode 100644 index 00000000000..e058eaa917e Binary files /dev/null and b/public/images/ui/legacy/text_images/ru/summary/summary_stats_exp_title_ru.png differ diff --git a/public/images/ui/legacy/text_images/ru/summary/summary_stats_expbar_title_ru.png b/public/images/ui/legacy/text_images/ru/summary/summary_stats_expbar_title_ru.png new file mode 100644 index 00000000000..b885633d336 Binary files /dev/null and b/public/images/ui/legacy/text_images/ru/summary/summary_stats_expbar_title_ru.png differ diff --git a/public/images/ui/legacy/text_images/ru/summary/summary_stats_item_title_ru.png b/public/images/ui/legacy/text_images/ru/summary/summary_stats_item_title_ru.png new file mode 100644 index 00000000000..95b01d062ab Binary files /dev/null and b/public/images/ui/legacy/text_images/ru/summary/summary_stats_item_title_ru.png differ diff --git a/public/images/ui/legacy/text_images/ru/summary/summary_stats_stats_title_ru.png b/public/images/ui/legacy/text_images/ru/summary/summary_stats_stats_title_ru.png new file mode 100644 index 00000000000..0c1c5dc9445 Binary files /dev/null and b/public/images/ui/legacy/text_images/ru/summary/summary_stats_stats_title_ru.png differ diff --git a/public/images/ui/legacy/text_images/ru/summary/summary_tabs_1_ru.png b/public/images/ui/legacy/text_images/ru/summary/summary_tabs_1_ru.png new file mode 100644 index 00000000000..379768ea310 Binary files /dev/null and b/public/images/ui/legacy/text_images/ru/summary/summary_tabs_1_ru.png differ diff --git a/public/images/ui/legacy/text_images/ru/summary/summary_tabs_2_ru.png b/public/images/ui/legacy/text_images/ru/summary/summary_tabs_2_ru.png new file mode 100644 index 00000000000..2a04879b32b Binary files /dev/null and b/public/images/ui/legacy/text_images/ru/summary/summary_tabs_2_ru.png differ diff --git a/public/images/ui/legacy/text_images/ru/summary/summary_tabs_3_ru.png b/public/images/ui/legacy/text_images/ru/summary/summary_tabs_3_ru.png new file mode 100644 index 00000000000..ef65774f744 Binary files /dev/null and b/public/images/ui/legacy/text_images/ru/summary/summary_tabs_3_ru.png differ diff --git a/public/images/ui/legacy/text_images/tl/battle_ui/overlay_exp_label_tl.png b/public/images/ui/legacy/text_images/tl/battle_ui/overlay_exp_label_tl.png new file mode 100644 index 00000000000..40b5e8925a1 Binary files /dev/null and b/public/images/ui/legacy/text_images/tl/battle_ui/overlay_exp_label_tl.png differ diff --git a/public/images/ui/legacy/text_images/tl/battle_ui/overlay_hp_label_boss_tl.png b/public/images/ui/legacy/text_images/tl/battle_ui/overlay_hp_label_boss_tl.png new file mode 100644 index 00000000000..283d63fb235 Binary files /dev/null and b/public/images/ui/legacy/text_images/tl/battle_ui/overlay_hp_label_boss_tl.png differ diff --git a/public/images/ui/legacy/text_images/tl/battle_ui/overlay_hp_label_tl.png b/public/images/ui/legacy/text_images/tl/battle_ui/overlay_hp_label_tl.png new file mode 100644 index 00000000000..67824c7ee4e Binary files /dev/null and b/public/images/ui/legacy/text_images/tl/battle_ui/overlay_hp_label_tl.png differ diff --git a/public/images/ui/legacy/text_images/tl/battle_ui/overlay_lv_tl.png b/public/images/ui/legacy/text_images/tl/battle_ui/overlay_lv_tl.png new file mode 100644 index 00000000000..ea32ac03ee2 Binary files /dev/null and b/public/images/ui/legacy/text_images/tl/battle_ui/overlay_lv_tl.png differ diff --git a/public/images/ui/legacy/text_images/tl/battle_ui/pbinfo_stat_tl.json b/public/images/ui/legacy/text_images/tl/battle_ui/pbinfo_stat_tl.json new file mode 100644 index 00000000000..023a5ee45f9 --- /dev/null +++ b/public/images/ui/legacy/text_images/tl/battle_ui/pbinfo_stat_tl.json @@ -0,0 +1,209 @@ +{ + "textures": [ + { + "image": "pbinfo_stat_tl.png", + "format": "RGBA8888", + "size": { + "w": 112, + "h": 6 + }, + "scale": 1, + "frames": [ + { + "filename": "SPATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 18, + "h": 6 + }, + "frame": { + "x": 0, + "y": 0, + "w": 18, + "h": 6 + } + }, + { + "filename": "SPDEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 18, + "h": 6 + }, + "frame": { + "x": 18, + "y": 0, + "w": 18, + "h": 6 + } + }, + { + "filename": "CRIT", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 17, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 16, + "h": 6 + }, + "frame": { + "x": 36, + "y": 0, + "w": 16, + "h": 6 + } + }, + { + "filename": "ACC", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 52, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "ATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 64, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "DEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 76, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "EVA", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 88, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "SPD", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 100, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "HP", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 9, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 8, + "h": 6 + }, + "frame": { + "x": 112, + "y": 0, + "w": 8, + "h": 6 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:40d30205ce8efd40dfa86cd11b0491d6:7076db6ed74199dcfb38fc8cd4d4a0e8:05882267d3999884e0491134e98b1b53$" + } +} diff --git a/public/images/ui/legacy/text_images/tl/battle_ui/pbinfo_stat_tl.png b/public/images/ui/legacy/text_images/tl/battle_ui/pbinfo_stat_tl.png new file mode 100644 index 00000000000..c729e7a2207 Binary files /dev/null and b/public/images/ui/legacy/text_images/tl/battle_ui/pbinfo_stat_tl.png differ diff --git a/public/images/ui/legacy/text_images/tl/party_ui/party_slot_overlay_hp_tl.png b/public/images/ui/legacy/text_images/tl/party_ui/party_slot_overlay_hp_tl.png new file mode 100644 index 00000000000..a78ac090d3b Binary files /dev/null and b/public/images/ui/legacy/text_images/tl/party_ui/party_slot_overlay_hp_tl.png differ diff --git a/public/images/ui/legacy/text_images/tl/party_ui/party_slot_overlay_lv_tl.png b/public/images/ui/legacy/text_images/tl/party_ui/party_slot_overlay_lv_tl.png new file mode 100644 index 00000000000..11bb545c7af Binary files /dev/null and b/public/images/ui/legacy/text_images/tl/party_ui/party_slot_overlay_lv_tl.png differ diff --git a/public/images/ui/legacy/text_images/tl/summary/summary_dexnb_label_overlay_shiny_tl.png b/public/images/ui/legacy/text_images/tl/summary/summary_dexnb_label_overlay_shiny_tl.png new file mode 100644 index 00000000000..bb2436738a8 Binary files /dev/null and b/public/images/ui/legacy/text_images/tl/summary/summary_dexnb_label_overlay_shiny_tl.png differ diff --git a/public/images/ui/legacy/text_images/tl/summary/summary_dexnb_label_tl.png b/public/images/ui/legacy/text_images/tl/summary/summary_dexnb_label_tl.png new file mode 100644 index 00000000000..bf568c486aa Binary files /dev/null and b/public/images/ui/legacy/text_images/tl/summary/summary_dexnb_label_tl.png differ diff --git a/public/images/ui/legacy/text_images/tl/summary/summary_moves_descriptions_title_tl.png b/public/images/ui/legacy/text_images/tl/summary/summary_moves_descriptions_title_tl.png new file mode 100644 index 00000000000..e83e8cafbfc Binary files /dev/null and b/public/images/ui/legacy/text_images/tl/summary/summary_moves_descriptions_title_tl.png differ diff --git a/public/images/ui/legacy/text_images/tl/summary/summary_moves_effect_title_tl.png b/public/images/ui/legacy/text_images/tl/summary/summary_moves_effect_title_tl.png new file mode 100644 index 00000000000..fbbaac0b260 Binary files /dev/null and b/public/images/ui/legacy/text_images/tl/summary/summary_moves_effect_title_tl.png differ diff --git a/public/images/ui/legacy/text_images/tl/summary/summary_moves_moves_title_tl.png b/public/images/ui/legacy/text_images/tl/summary/summary_moves_moves_title_tl.png new file mode 100644 index 00000000000..6bbb29c9c5f Binary files /dev/null and b/public/images/ui/legacy/text_images/tl/summary/summary_moves_moves_title_tl.png differ diff --git a/public/images/ui/legacy/text_images/tl/summary/summary_moves_overlay_pp_tl.png b/public/images/ui/legacy/text_images/tl/summary/summary_moves_overlay_pp_tl.png new file mode 100644 index 00000000000..9babffc0429 Binary files /dev/null and b/public/images/ui/legacy/text_images/tl/summary/summary_moves_overlay_pp_tl.png differ diff --git a/public/images/ui/legacy/text_images/tl/summary/summary_profile_ability_tl.png b/public/images/ui/legacy/text_images/tl/summary/summary_profile_ability_tl.png new file mode 100644 index 00000000000..a05c22b7d47 Binary files /dev/null and b/public/images/ui/legacy/text_images/tl/summary/summary_profile_ability_tl.png differ diff --git a/public/images/ui/legacy/text_images/tl/summary/summary_profile_memo_title_tl.png b/public/images/ui/legacy/text_images/tl/summary/summary_profile_memo_title_tl.png new file mode 100644 index 00000000000..3d69c20e57f Binary files /dev/null and b/public/images/ui/legacy/text_images/tl/summary/summary_profile_memo_title_tl.png differ diff --git a/public/images/ui/legacy/text_images/tl/summary/summary_profile_passive_tl.png b/public/images/ui/legacy/text_images/tl/summary/summary_profile_passive_tl.png new file mode 100644 index 00000000000..c026e87a215 Binary files /dev/null and b/public/images/ui/legacy/text_images/tl/summary/summary_profile_passive_tl.png differ diff --git a/public/images/ui/legacy/text_images/tl/summary/summary_profile_profile_title_tl.png b/public/images/ui/legacy/text_images/tl/summary/summary_profile_profile_title_tl.png new file mode 100644 index 00000000000..4170dccf682 Binary files /dev/null and b/public/images/ui/legacy/text_images/tl/summary/summary_profile_profile_title_tl.png differ diff --git a/public/images/ui/legacy/text_images/tl/summary/summary_stats_exp_title_tl.png b/public/images/ui/legacy/text_images/tl/summary/summary_stats_exp_title_tl.png new file mode 100644 index 00000000000..d0d8d7f81a1 Binary files /dev/null and b/public/images/ui/legacy/text_images/tl/summary/summary_stats_exp_title_tl.png differ diff --git a/public/images/ui/legacy/text_images/tl/summary/summary_stats_expbar_title.png b/public/images/ui/legacy/text_images/tl/summary/summary_stats_expbar_title.png new file mode 100644 index 00000000000..e9dfb10e5d6 Binary files /dev/null and b/public/images/ui/legacy/text_images/tl/summary/summary_stats_expbar_title.png differ diff --git a/public/images/ui/legacy/text_images/tl/summary/summary_stats_item_title_tl.png b/public/images/ui/legacy/text_images/tl/summary/summary_stats_item_title_tl.png new file mode 100644 index 00000000000..42e08b3e52a Binary files /dev/null and b/public/images/ui/legacy/text_images/tl/summary/summary_stats_item_title_tl.png differ diff --git a/public/images/ui/legacy/text_images/tl/summary/summary_stats_stats_title_tl.png b/public/images/ui/legacy/text_images/tl/summary/summary_stats_stats_title_tl.png new file mode 100644 index 00000000000..f602a43c39d Binary files /dev/null and b/public/images/ui/legacy/text_images/tl/summary/summary_stats_stats_title_tl.png differ diff --git a/public/images/ui/legacy/text_images/tl/summary/summary_tabs_1_tl.png b/public/images/ui/legacy/text_images/tl/summary/summary_tabs_1_tl.png new file mode 100644 index 00000000000..379768ea310 Binary files /dev/null and b/public/images/ui/legacy/text_images/tl/summary/summary_tabs_1_tl.png differ diff --git a/public/images/ui/legacy/text_images/tl/summary/summary_tabs_2_tl.png b/public/images/ui/legacy/text_images/tl/summary/summary_tabs_2_tl.png new file mode 100644 index 00000000000..2a04879b32b Binary files /dev/null and b/public/images/ui/legacy/text_images/tl/summary/summary_tabs_2_tl.png differ diff --git a/public/images/ui/legacy/text_images/tl/summary/summary_tabs_3_tl.png b/public/images/ui/legacy/text_images/tl/summary/summary_tabs_3_tl.png new file mode 100644 index 00000000000..ef65774f744 Binary files /dev/null and b/public/images/ui/legacy/text_images/tl/summary/summary_tabs_3_tl.png differ diff --git a/public/images/ui/legacy/text_images/tr/battle_ui/overlay_exp_label_tr.png b/public/images/ui/legacy/text_images/tr/battle_ui/overlay_exp_label_tr.png new file mode 100644 index 00000000000..5b9bd882581 Binary files /dev/null and b/public/images/ui/legacy/text_images/tr/battle_ui/overlay_exp_label_tr.png differ diff --git a/public/images/ui/legacy/text_images/tr/battle_ui/overlay_hp_label_boss_tr.png b/public/images/ui/legacy/text_images/tr/battle_ui/overlay_hp_label_boss_tr.png new file mode 100644 index 00000000000..283d63fb235 Binary files /dev/null and b/public/images/ui/legacy/text_images/tr/battle_ui/overlay_hp_label_boss_tr.png differ diff --git a/public/images/ui/legacy/text_images/tr/battle_ui/overlay_hp_label_tr.png b/public/images/ui/legacy/text_images/tr/battle_ui/overlay_hp_label_tr.png new file mode 100644 index 00000000000..da11c11cb50 Binary files /dev/null and b/public/images/ui/legacy/text_images/tr/battle_ui/overlay_hp_label_tr.png differ diff --git a/public/images/ui/legacy/text_images/tr/battle_ui/overlay_lv_tr.png b/public/images/ui/legacy/text_images/tr/battle_ui/overlay_lv_tr.png new file mode 100644 index 00000000000..6d8ccbb3f3a Binary files /dev/null and b/public/images/ui/legacy/text_images/tr/battle_ui/overlay_lv_tr.png differ diff --git a/public/images/ui/legacy/text_images/tr/battle_ui/pbinfo_stat_tr.json b/public/images/ui/legacy/text_images/tr/battle_ui/pbinfo_stat_tr.json new file mode 100644 index 00000000000..6de50500767 --- /dev/null +++ b/public/images/ui/legacy/text_images/tr/battle_ui/pbinfo_stat_tr.json @@ -0,0 +1,209 @@ +{ + "textures": [ + { + "image": "pbinfo_stat_tr.png", + "format": "RGBA8888", + "size": { + "w": 112, + "h": 6 + }, + "scale": 1, + "frames": [ + { + "filename": "SPATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 18, + "h": 6 + }, + "frame": { + "x": 0, + "y": 0, + "w": 18, + "h": 6 + } + }, + { + "filename": "SPDEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 18, + "h": 6 + }, + "frame": { + "x": 18, + "y": 0, + "w": 18, + "h": 6 + } + }, + { + "filename": "CRIT", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 17, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 16, + "h": 6 + }, + "frame": { + "x": 36, + "y": 0, + "w": 16, + "h": 6 + } + }, + { + "filename": "ACC", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 52, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "ATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 64, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "DEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 76, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "EVA", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 88, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "SPD", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 100, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "HP", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 9, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 8, + "h": 6 + }, + "frame": { + "x": 112, + "y": 0, + "w": 8, + "h": 6 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:40d30205ce8efd40dfa86cd11b0491d6:7076db6ed74199dcfb38fc8cd4d4a0e8:05882267d3999884e0491134e98b1b53$" + } +} diff --git a/public/images/ui/legacy/text_images/tr/battle_ui/pbinfo_stat_tr.png b/public/images/ui/legacy/text_images/tr/battle_ui/pbinfo_stat_tr.png new file mode 100644 index 00000000000..c729e7a2207 Binary files /dev/null and b/public/images/ui/legacy/text_images/tr/battle_ui/pbinfo_stat_tr.png differ diff --git a/public/images/ui/legacy/text_images/tr/party_ui/party_slot_overlay_hp_tr.png b/public/images/ui/legacy/text_images/tr/party_ui/party_slot_overlay_hp_tr.png new file mode 100644 index 00000000000..2833fa27fb4 Binary files /dev/null and b/public/images/ui/legacy/text_images/tr/party_ui/party_slot_overlay_hp_tr.png differ diff --git a/public/images/ui/legacy/text_images/tr/party_ui/party_slot_overlay_lv_tr.png b/public/images/ui/legacy/text_images/tr/party_ui/party_slot_overlay_lv_tr.png new file mode 100644 index 00000000000..958a750a665 Binary files /dev/null and b/public/images/ui/legacy/text_images/tr/party_ui/party_slot_overlay_lv_tr.png differ diff --git a/public/images/ui/legacy/text_images/tr/summary/summary_dexnb_label_overlay_shiny_tr.png b/public/images/ui/legacy/text_images/tr/summary/summary_dexnb_label_overlay_shiny_tr.png new file mode 100644 index 00000000000..bb2436738a8 Binary files /dev/null and b/public/images/ui/legacy/text_images/tr/summary/summary_dexnb_label_overlay_shiny_tr.png differ diff --git a/public/images/ui/legacy/text_images/tr/summary/summary_dexnb_label_tr.png b/public/images/ui/legacy/text_images/tr/summary/summary_dexnb_label_tr.png new file mode 100644 index 00000000000..bf568c486aa Binary files /dev/null and b/public/images/ui/legacy/text_images/tr/summary/summary_dexnb_label_tr.png differ diff --git a/public/images/ui/legacy/text_images/tr/summary/summary_moves_descriptions_title_tr.png b/public/images/ui/legacy/text_images/tr/summary/summary_moves_descriptions_title_tr.png new file mode 100644 index 00000000000..e83e8cafbfc Binary files /dev/null and b/public/images/ui/legacy/text_images/tr/summary/summary_moves_descriptions_title_tr.png differ diff --git a/public/images/ui/legacy/text_images/tr/summary/summary_moves_effect_title_tr.png b/public/images/ui/legacy/text_images/tr/summary/summary_moves_effect_title_tr.png new file mode 100644 index 00000000000..fbbaac0b260 Binary files /dev/null and b/public/images/ui/legacy/text_images/tr/summary/summary_moves_effect_title_tr.png differ diff --git a/public/images/ui/legacy/text_images/tr/summary/summary_moves_moves_title_tr.png b/public/images/ui/legacy/text_images/tr/summary/summary_moves_moves_title_tr.png new file mode 100644 index 00000000000..6bbb29c9c5f Binary files /dev/null and b/public/images/ui/legacy/text_images/tr/summary/summary_moves_moves_title_tr.png differ diff --git a/public/images/ui/legacy/text_images/tr/summary/summary_moves_overlay_pp_tr.png b/public/images/ui/legacy/text_images/tr/summary/summary_moves_overlay_pp_tr.png new file mode 100644 index 00000000000..9babffc0429 Binary files /dev/null and b/public/images/ui/legacy/text_images/tr/summary/summary_moves_overlay_pp_tr.png differ diff --git a/public/images/ui/legacy/text_images/tr/summary/summary_profile_ability_tr.png b/public/images/ui/legacy/text_images/tr/summary/summary_profile_ability_tr.png new file mode 100644 index 00000000000..a05c22b7d47 Binary files /dev/null and b/public/images/ui/legacy/text_images/tr/summary/summary_profile_ability_tr.png differ diff --git a/public/images/ui/legacy/text_images/tr/summary/summary_profile_memo_title_tr.png b/public/images/ui/legacy/text_images/tr/summary/summary_profile_memo_title_tr.png new file mode 100644 index 00000000000..3d69c20e57f Binary files /dev/null and b/public/images/ui/legacy/text_images/tr/summary/summary_profile_memo_title_tr.png differ diff --git a/public/images/ui/legacy/text_images/tr/summary/summary_profile_passive_tr.png b/public/images/ui/legacy/text_images/tr/summary/summary_profile_passive_tr.png new file mode 100644 index 00000000000..c026e87a215 Binary files /dev/null and b/public/images/ui/legacy/text_images/tr/summary/summary_profile_passive_tr.png differ diff --git a/public/images/ui/legacy/text_images/tr/summary/summary_profile_profile_title_tr.png b/public/images/ui/legacy/text_images/tr/summary/summary_profile_profile_title_tr.png new file mode 100644 index 00000000000..4170dccf682 Binary files /dev/null and b/public/images/ui/legacy/text_images/tr/summary/summary_profile_profile_title_tr.png differ diff --git a/public/images/ui/legacy/text_images/tr/summary/summary_stats_exp_title_tr.png b/public/images/ui/legacy/text_images/tr/summary/summary_stats_exp_title_tr.png new file mode 100644 index 00000000000..d0d8d7f81a1 Binary files /dev/null and b/public/images/ui/legacy/text_images/tr/summary/summary_stats_exp_title_tr.png differ diff --git a/public/images/ui/legacy/text_images/tr/summary/summary_stats_expbar_title_tr.png b/public/images/ui/legacy/text_images/tr/summary/summary_stats_expbar_title_tr.png new file mode 100644 index 00000000000..e9dfb10e5d6 Binary files /dev/null and b/public/images/ui/legacy/text_images/tr/summary/summary_stats_expbar_title_tr.png differ diff --git a/public/images/ui/legacy/text_images/tr/summary/summary_stats_item_title_tr.png b/public/images/ui/legacy/text_images/tr/summary/summary_stats_item_title_tr.png new file mode 100644 index 00000000000..42e08b3e52a Binary files /dev/null and b/public/images/ui/legacy/text_images/tr/summary/summary_stats_item_title_tr.png differ diff --git a/public/images/ui/legacy/text_images/tr/summary/summary_stats_stats_title_tr.png b/public/images/ui/legacy/text_images/tr/summary/summary_stats_stats_title_tr.png new file mode 100644 index 00000000000..f602a43c39d Binary files /dev/null and b/public/images/ui/legacy/text_images/tr/summary/summary_stats_stats_title_tr.png differ diff --git a/public/images/ui/legacy/text_images/tr/summary/summary_tabs_1_tr.png b/public/images/ui/legacy/text_images/tr/summary/summary_tabs_1_tr.png new file mode 100644 index 00000000000..379768ea310 Binary files /dev/null and b/public/images/ui/legacy/text_images/tr/summary/summary_tabs_1_tr.png differ diff --git a/public/images/ui/legacy/text_images/tr/summary/summary_tabs_2_tr.png b/public/images/ui/legacy/text_images/tr/summary/summary_tabs_2_tr.png new file mode 100644 index 00000000000..2a04879b32b Binary files /dev/null and b/public/images/ui/legacy/text_images/tr/summary/summary_tabs_2_tr.png differ diff --git a/public/images/ui/legacy/text_images/tr/summary/summary_tabs_3_tr.png b/public/images/ui/legacy/text_images/tr/summary/summary_tabs_3_tr.png new file mode 100644 index 00000000000..ef65774f744 Binary files /dev/null and b/public/images/ui/legacy/text_images/tr/summary/summary_tabs_3_tr.png differ diff --git a/public/images/ui/legacy/text_images/zh-CN/battle_ui/overlay_exp_label_zh-CN.png b/public/images/ui/legacy/text_images/zh-CN/battle_ui/overlay_exp_label_zh-CN.png new file mode 100644 index 00000000000..40b5e8925a1 Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-CN/battle_ui/overlay_exp_label_zh-CN.png differ diff --git a/public/images/ui/legacy/text_images/zh-CN/battle_ui/overlay_hp_label_boss_zh-CN.png b/public/images/ui/legacy/text_images/zh-CN/battle_ui/overlay_hp_label_boss_zh-CN.png new file mode 100644 index 00000000000..283d63fb235 Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-CN/battle_ui/overlay_hp_label_boss_zh-CN.png differ diff --git a/public/images/ui/legacy/text_images/zh-CN/battle_ui/overlay_hp_label_zh-CN.png b/public/images/ui/legacy/text_images/zh-CN/battle_ui/overlay_hp_label_zh-CN.png new file mode 100644 index 00000000000..67824c7ee4e Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-CN/battle_ui/overlay_hp_label_zh-CN.png differ diff --git a/public/images/ui/legacy/text_images/zh-CN/battle_ui/overlay_lv_zh-CN.png b/public/images/ui/legacy/text_images/zh-CN/battle_ui/overlay_lv_zh-CN.png new file mode 100644 index 00000000000..ea32ac03ee2 Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-CN/battle_ui/overlay_lv_zh-CN.png differ diff --git a/public/images/ui/legacy/text_images/zh-CN/battle_ui/pbinfo_stat_zh-CN.json b/public/images/ui/legacy/text_images/zh-CN/battle_ui/pbinfo_stat_zh-CN.json new file mode 100644 index 00000000000..49649bbc315 --- /dev/null +++ b/public/images/ui/legacy/text_images/zh-CN/battle_ui/pbinfo_stat_zh-CN.json @@ -0,0 +1,209 @@ +{ + "textures": [ + { + "image": "pbinfo_stat_zh-CN.png", + "format": "RGBA8888", + "size": { + "w": 112, + "h": 6 + }, + "scale": 1, + "frames": [ + { + "filename": "SPATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 18, + "h": 6 + }, + "frame": { + "x": 0, + "y": 0, + "w": 18, + "h": 6 + } + }, + { + "filename": "SPDEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 18, + "h": 6 + }, + "frame": { + "x": 18, + "y": 0, + "w": 18, + "h": 6 + } + }, + { + "filename": "CRIT", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 17, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 16, + "h": 6 + }, + "frame": { + "x": 36, + "y": 0, + "w": 16, + "h": 6 + } + }, + { + "filename": "ACC", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 52, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "ATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 64, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "DEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 76, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "EVA", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 88, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "SPD", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 100, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "HP", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 9, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 8, + "h": 6 + }, + "frame": { + "x": 112, + "y": 0, + "w": 8, + "h": 6 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:40d30205ce8efd40dfa86cd11b0491d6:7076db6ed74199dcfb38fc8cd4d4a0e8:05882267d3999884e0491134e98b1b53$" + } +} diff --git a/public/images/ui/legacy/text_images/zh-CN/battle_ui/pbinfo_stat_zh-CN.png b/public/images/ui/legacy/text_images/zh-CN/battle_ui/pbinfo_stat_zh-CN.png new file mode 100644 index 00000000000..c729e7a2207 Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-CN/battle_ui/pbinfo_stat_zh-CN.png differ diff --git a/public/images/ui/legacy/text_images/zh-CN/party_ui/party_slot_overlay_hp_zh-CN.png b/public/images/ui/legacy/text_images/zh-CN/party_ui/party_slot_overlay_hp_zh-CN.png new file mode 100644 index 00000000000..a78ac090d3b Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-CN/party_ui/party_slot_overlay_hp_zh-CN.png differ diff --git a/public/images/ui/legacy/text_images/zh-CN/party_ui/party_slot_overlay_lv_zh-CN.png b/public/images/ui/legacy/text_images/zh-CN/party_ui/party_slot_overlay_lv_zh-CN.png new file mode 100644 index 00000000000..11bb545c7af Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-CN/party_ui/party_slot_overlay_lv_zh-CN.png differ diff --git a/public/images/ui/legacy/text_images/zh-CN/summary/summary_dexnb_label_overlay_shiny_zh-CN.png b/public/images/ui/legacy/text_images/zh-CN/summary/summary_dexnb_label_overlay_shiny_zh-CN.png new file mode 100644 index 00000000000..bb2436738a8 Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-CN/summary/summary_dexnb_label_overlay_shiny_zh-CN.png differ diff --git a/public/images/ui/legacy/text_images/zh-CN/summary/summary_dexnb_label_zh-CN.png b/public/images/ui/legacy/text_images/zh-CN/summary/summary_dexnb_label_zh-CN.png new file mode 100644 index 00000000000..eab90a91c7f Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-CN/summary/summary_dexnb_label_zh-CN.png differ diff --git a/public/images/ui/legacy/text_images/zh-CN/summary/summary_moves_descriptions_title_zh-CN.png b/public/images/ui/legacy/text_images/zh-CN/summary/summary_moves_descriptions_title_zh-CN.png new file mode 100644 index 00000000000..3d2b4d08376 Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-CN/summary/summary_moves_descriptions_title_zh-CN.png differ diff --git a/public/images/ui/legacy/text_images/zh-CN/summary/summary_moves_effect_title_zh-CN.png b/public/images/ui/legacy/text_images/zh-CN/summary/summary_moves_effect_title_zh-CN.png new file mode 100644 index 00000000000..55fb0efd832 Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-CN/summary/summary_moves_effect_title_zh-CN.png differ diff --git a/public/images/ui/legacy/text_images/zh-CN/summary/summary_moves_moves_title_zh-CN.png b/public/images/ui/legacy/text_images/zh-CN/summary/summary_moves_moves_title_zh-CN.png new file mode 100644 index 00000000000..d869ab4e311 Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-CN/summary/summary_moves_moves_title_zh-CN.png differ diff --git a/public/images/ui/legacy/text_images/zh-CN/summary/summary_moves_overlay_pp_zh-CN.png b/public/images/ui/legacy/text_images/zh-CN/summary/summary_moves_overlay_pp_zh-CN.png new file mode 100644 index 00000000000..9babffc0429 Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-CN/summary/summary_moves_overlay_pp_zh-CN.png differ diff --git a/public/images/ui/legacy/text_images/zh-CN/summary/summary_profile_ability_zh-CN.png b/public/images/ui/legacy/text_images/zh-CN/summary/summary_profile_ability_zh-CN.png new file mode 100644 index 00000000000..6600db26802 Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-CN/summary/summary_profile_ability_zh-CN.png differ diff --git a/public/images/ui/legacy/text_images/zh-CN/summary/summary_profile_memo_title_zh-CN.png b/public/images/ui/legacy/text_images/zh-CN/summary/summary_profile_memo_title_zh-CN.png new file mode 100644 index 00000000000..14cdf099044 Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-CN/summary/summary_profile_memo_title_zh-CN.png differ diff --git a/public/images/ui/legacy/text_images/zh-CN/summary/summary_profile_passive_zh-CN.png b/public/images/ui/legacy/text_images/zh-CN/summary/summary_profile_passive_zh-CN.png new file mode 100644 index 00000000000..66f56ff435e Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-CN/summary/summary_profile_passive_zh-CN.png differ diff --git a/public/images/ui/legacy/text_images/zh-CN/summary/summary_profile_profile_title_zh-CN.png b/public/images/ui/legacy/text_images/zh-CN/summary/summary_profile_profile_title_zh-CN.png new file mode 100644 index 00000000000..8d4f82df3b3 Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-CN/summary/summary_profile_profile_title_zh-CN.png differ diff --git a/public/images/ui/legacy/text_images/zh-CN/summary/summary_stats_exp_title_zh-CN.png b/public/images/ui/legacy/text_images/zh-CN/summary/summary_stats_exp_title_zh-CN.png new file mode 100644 index 00000000000..d0d8d7f81a1 Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-CN/summary/summary_stats_exp_title_zh-CN.png differ diff --git a/public/images/ui/legacy/text_images/zh-CN/summary/summary_stats_expbar_title_zh-CN.png b/public/images/ui/legacy/text_images/zh-CN/summary/summary_stats_expbar_title_zh-CN.png new file mode 100644 index 00000000000..e9dfb10e5d6 Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-CN/summary/summary_stats_expbar_title_zh-CN.png differ diff --git a/public/images/ui/legacy/text_images/zh-CN/summary/summary_stats_item_title_zh-CN.png b/public/images/ui/legacy/text_images/zh-CN/summary/summary_stats_item_title_zh-CN.png new file mode 100644 index 00000000000..5752b28288c Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-CN/summary/summary_stats_item_title_zh-CN.png differ diff --git a/public/images/ui/legacy/text_images/zh-CN/summary/summary_stats_stats_title_zh-CN.png b/public/images/ui/legacy/text_images/zh-CN/summary/summary_stats_stats_title_zh-CN.png new file mode 100644 index 00000000000..5531819ef66 Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-CN/summary/summary_stats_stats_title_zh-CN.png differ diff --git a/public/images/ui/legacy/text_images/zh-CN/summary/summary_tabs_1_zh-CN.png b/public/images/ui/legacy/text_images/zh-CN/summary/summary_tabs_1_zh-CN.png new file mode 100644 index 00000000000..379768ea310 Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-CN/summary/summary_tabs_1_zh-CN.png differ diff --git a/public/images/ui/legacy/text_images/zh-CN/summary/summary_tabs_2_zh-CN.png b/public/images/ui/legacy/text_images/zh-CN/summary/summary_tabs_2_zh-CN.png new file mode 100644 index 00000000000..2a04879b32b Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-CN/summary/summary_tabs_2_zh-CN.png differ diff --git a/public/images/ui/legacy/text_images/zh-CN/summary/summary_tabs_3_zh-CN.png b/public/images/ui/legacy/text_images/zh-CN/summary/summary_tabs_3_zh-CN.png new file mode 100644 index 00000000000..ef65774f744 Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-CN/summary/summary_tabs_3_zh-CN.png differ diff --git a/public/images/ui/legacy/text_images/zh-TW/battle_ui/overlay_exp_label_zh-TW.png b/public/images/ui/legacy/text_images/zh-TW/battle_ui/overlay_exp_label_zh-TW.png new file mode 100644 index 00000000000..40b5e8925a1 Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-TW/battle_ui/overlay_exp_label_zh-TW.png differ diff --git a/public/images/ui/legacy/text_images/zh-TW/battle_ui/overlay_hp_label_boss_zh-TW.png b/public/images/ui/legacy/text_images/zh-TW/battle_ui/overlay_hp_label_boss_zh-TW.png new file mode 100644 index 00000000000..283d63fb235 Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-TW/battle_ui/overlay_hp_label_boss_zh-TW.png differ diff --git a/public/images/ui/legacy/text_images/zh-TW/battle_ui/overlay_hp_label_zh-TW.png b/public/images/ui/legacy/text_images/zh-TW/battle_ui/overlay_hp_label_zh-TW.png new file mode 100644 index 00000000000..67824c7ee4e Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-TW/battle_ui/overlay_hp_label_zh-TW.png differ diff --git a/public/images/ui/legacy/text_images/zh-TW/battle_ui/overlay_lv_zh-TW.png b/public/images/ui/legacy/text_images/zh-TW/battle_ui/overlay_lv_zh-TW.png new file mode 100644 index 00000000000..ea32ac03ee2 Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-TW/battle_ui/overlay_lv_zh-TW.png differ diff --git a/public/images/ui/legacy/text_images/zh-TW/battle_ui/pbinfo_stat_zh-TW.json b/public/images/ui/legacy/text_images/zh-TW/battle_ui/pbinfo_stat_zh-TW.json new file mode 100644 index 00000000000..5a2e0fe2c30 --- /dev/null +++ b/public/images/ui/legacy/text_images/zh-TW/battle_ui/pbinfo_stat_zh-TW.json @@ -0,0 +1,209 @@ +{ + "textures": [ + { + "image": "pbinfo_stat_zh-TW.png", + "format": "RGBA8888", + "size": { + "w": 112, + "h": 6 + }, + "scale": 1, + "frames": [ + { + "filename": "SPATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 18, + "h": 6 + }, + "frame": { + "x": 0, + "y": 0, + "w": 18, + "h": 6 + } + }, + { + "filename": "SPDEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 18, + "h": 6 + }, + "frame": { + "x": 18, + "y": 0, + "w": 18, + "h": 6 + } + }, + { + "filename": "CRIT", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 17, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 16, + "h": 6 + }, + "frame": { + "x": 36, + "y": 0, + "w": 16, + "h": 6 + } + }, + { + "filename": "ACC", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 52, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "ATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 64, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "DEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 76, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "EVA", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 88, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "SPD", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 12, + "h": 6 + }, + "frame": { + "x": 100, + "y": 0, + "w": 12, + "h": 6 + } + }, + { + "filename": "HP", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 9, + "h": 8 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 8, + "h": 6 + }, + "frame": { + "x": 112, + "y": 0, + "w": 8, + "h": 6 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:40d30205ce8efd40dfa86cd11b0491d6:7076db6ed74199dcfb38fc8cd4d4a0e8:05882267d3999884e0491134e98b1b53$" + } +} diff --git a/public/images/ui/legacy/text_images/zh-TW/battle_ui/pbinfo_stat_zh-TW.png b/public/images/ui/legacy/text_images/zh-TW/battle_ui/pbinfo_stat_zh-TW.png new file mode 100644 index 00000000000..c729e7a2207 Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-TW/battle_ui/pbinfo_stat_zh-TW.png differ diff --git a/public/images/ui/legacy/text_images/zh-TW/party_ui/party_slot_overlay_hp_zh-TW.png b/public/images/ui/legacy/text_images/zh-TW/party_ui/party_slot_overlay_hp_zh-TW.png new file mode 100644 index 00000000000..a78ac090d3b Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-TW/party_ui/party_slot_overlay_hp_zh-TW.png differ diff --git a/public/images/ui/legacy/text_images/zh-TW/party_ui/party_slot_overlay_lv_zh-TW.png b/public/images/ui/legacy/text_images/zh-TW/party_ui/party_slot_overlay_lv_zh-TW.png new file mode 100644 index 00000000000..11bb545c7af Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-TW/party_ui/party_slot_overlay_lv_zh-TW.png differ diff --git a/public/images/ui/legacy/text_images/zh-TW/summary/summary_dexnb_label_overlay_shiny_zh-TW.png b/public/images/ui/legacy/text_images/zh-TW/summary/summary_dexnb_label_overlay_shiny_zh-TW.png new file mode 100644 index 00000000000..bb2436738a8 Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-TW/summary/summary_dexnb_label_overlay_shiny_zh-TW.png differ diff --git a/public/images/ui/legacy/text_images/zh-TW/summary/summary_dexnb_label_zh-TW.png b/public/images/ui/legacy/text_images/zh-TW/summary/summary_dexnb_label_zh-TW.png new file mode 100644 index 00000000000..eab90a91c7f Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-TW/summary/summary_dexnb_label_zh-TW.png differ diff --git a/public/images/ui/legacy/text_images/zh-TW/summary/summary_moves_descriptions_title_zh-TW.png b/public/images/ui/legacy/text_images/zh-TW/summary/summary_moves_descriptions_title_zh-TW.png new file mode 100644 index 00000000000..3d2b4d08376 Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-TW/summary/summary_moves_descriptions_title_zh-TW.png differ diff --git a/public/images/ui/legacy/text_images/zh-TW/summary/summary_moves_effect_title_zh-TW.png b/public/images/ui/legacy/text_images/zh-TW/summary/summary_moves_effect_title_zh-TW.png new file mode 100644 index 00000000000..55fb0efd832 Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-TW/summary/summary_moves_effect_title_zh-TW.png differ diff --git a/public/images/ui/legacy/text_images/zh-TW/summary/summary_moves_moves_title_zh-TW.png b/public/images/ui/legacy/text_images/zh-TW/summary/summary_moves_moves_title_zh-TW.png new file mode 100644 index 00000000000..d869ab4e311 Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-TW/summary/summary_moves_moves_title_zh-TW.png differ diff --git a/public/images/ui/legacy/text_images/zh-TW/summary/summary_moves_overlay_pp_zh-TW.png b/public/images/ui/legacy/text_images/zh-TW/summary/summary_moves_overlay_pp_zh-TW.png new file mode 100644 index 00000000000..9babffc0429 Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-TW/summary/summary_moves_overlay_pp_zh-TW.png differ diff --git a/public/images/ui/legacy/text_images/zh-TW/summary/summary_profile_ability_zh-TW.png b/public/images/ui/legacy/text_images/zh-TW/summary/summary_profile_ability_zh-TW.png new file mode 100644 index 00000000000..6600db26802 Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-TW/summary/summary_profile_ability_zh-TW.png differ diff --git a/public/images/ui/legacy/text_images/zh-TW/summary/summary_profile_memo_title_zh-TW.png b/public/images/ui/legacy/text_images/zh-TW/summary/summary_profile_memo_title_zh-TW.png new file mode 100644 index 00000000000..14cdf099044 Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-TW/summary/summary_profile_memo_title_zh-TW.png differ diff --git a/public/images/ui/legacy/text_images/zh-TW/summary/summary_profile_passive_zh-TW.png b/public/images/ui/legacy/text_images/zh-TW/summary/summary_profile_passive_zh-TW.png new file mode 100644 index 00000000000..66f56ff435e Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-TW/summary/summary_profile_passive_zh-TW.png differ diff --git a/public/images/ui/legacy/text_images/zh-TW/summary/summary_profile_profile_title_zh-TW.png b/public/images/ui/legacy/text_images/zh-TW/summary/summary_profile_profile_title_zh-TW.png new file mode 100644 index 00000000000..8d4f82df3b3 Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-TW/summary/summary_profile_profile_title_zh-TW.png differ diff --git a/public/images/ui/legacy/text_images/zh-TW/summary/summary_stats_exp_title_zh-TW.png b/public/images/ui/legacy/text_images/zh-TW/summary/summary_stats_exp_title_zh-TW.png new file mode 100644 index 00000000000..d0d8d7f81a1 Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-TW/summary/summary_stats_exp_title_zh-TW.png differ diff --git a/public/images/ui/legacy/text_images/zh-TW/summary/summary_stats_expbar_title_zh-TW.png b/public/images/ui/legacy/text_images/zh-TW/summary/summary_stats_expbar_title_zh-TW.png new file mode 100644 index 00000000000..e9dfb10e5d6 Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-TW/summary/summary_stats_expbar_title_zh-TW.png differ diff --git a/public/images/ui/legacy/text_images/zh-TW/summary/summary_stats_item_title_zh-TW.png b/public/images/ui/legacy/text_images/zh-TW/summary/summary_stats_item_title_zh-TW.png new file mode 100644 index 00000000000..5752b28288c Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-TW/summary/summary_stats_item_title_zh-TW.png differ diff --git a/public/images/ui/legacy/text_images/zh-TW/summary/summary_stats_stats_title_zh-TW.png b/public/images/ui/legacy/text_images/zh-TW/summary/summary_stats_stats_title_zh-TW.png new file mode 100644 index 00000000000..5531819ef66 Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-TW/summary/summary_stats_stats_title_zh-TW.png differ diff --git a/public/images/ui/legacy/text_images/zh-TW/summary/summary_tabs_1_zh-TW.png b/public/images/ui/legacy/text_images/zh-TW/summary/summary_tabs_1_zh-TW.png new file mode 100644 index 00000000000..379768ea310 Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-TW/summary/summary_tabs_1_zh-TW.png differ diff --git a/public/images/ui/legacy/text_images/zh-TW/summary/summary_tabs_2_zh-TW.png b/public/images/ui/legacy/text_images/zh-TW/summary/summary_tabs_2_zh-TW.png new file mode 100644 index 00000000000..2a04879b32b Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-TW/summary/summary_tabs_2_zh-TW.png differ diff --git a/public/images/ui/legacy/text_images/zh-TW/summary/summary_tabs_3_zh-TW.png b/public/images/ui/legacy/text_images/zh-TW/summary/summary_tabs_3_zh-TW.png new file mode 100644 index 00000000000..ef65774f744 Binary files /dev/null and b/public/images/ui/legacy/text_images/zh-TW/summary/summary_tabs_3_zh-TW.png differ diff --git a/public/images/ui/mystery_egg.png b/public/images/ui/mystery_egg.png deleted file mode 100644 index 83ad626da7e..00000000000 Binary files a/public/images/ui/mystery_egg.png and /dev/null differ diff --git a/public/images/ui/overlay_lv.png b/public/images/ui/overlay_lv.png deleted file mode 100644 index 6ced2da2660..00000000000 Binary files a/public/images/ui/overlay_lv.png and /dev/null differ diff --git a/public/images/ui/party_slot_hp_bar.png b/public/images/ui/party_slot_hp_bar.png index 181bd04c0ea..c1818439e75 100644 Binary files a/public/images/ui/party_slot_hp_bar.png and b/public/images/ui/party_slot_hp_bar.png differ diff --git a/public/images/ui/pbinfo_enemy_boss.png b/public/images/ui/pbinfo_enemy_boss.png index ce829bf4631..421edabba03 100644 Binary files a/public/images/ui/pbinfo_enemy_boss.png and b/public/images/ui/pbinfo_enemy_boss.png differ diff --git a/public/images/ui/pbinfo_enemy_mini.png b/public/images/ui/pbinfo_enemy_mini.png index ddf10776778..bf60bb0f964 100644 Binary files a/public/images/ui/pbinfo_enemy_mini.png and b/public/images/ui/pbinfo_enemy_mini.png differ diff --git a/public/images/ui/pbinfo_player.png b/public/images/ui/pbinfo_player.png index c7b2227e800..55c381bd436 100644 Binary files a/public/images/ui/pbinfo_player.png and b/public/images/ui/pbinfo_player.png differ diff --git a/public/images/ui/pbinfo_player_mini.png b/public/images/ui/pbinfo_player_mini.png index 90d5e03dae8..255ad00f8ca 100644 Binary files a/public/images/ui/pbinfo_player_mini.png and b/public/images/ui/pbinfo_player_mini.png differ diff --git a/public/images/ui/pbinfo_stat.png b/public/images/ui/pbinfo_stat.png deleted file mode 100644 index 1f86cc6a958..00000000000 Binary files a/public/images/ui/pbinfo_stat.png and /dev/null differ diff --git a/public/images/ui/pokedex_summary_bg.png b/public/images/ui/pokedex_summary_bg.png index bb55127edf2..423bc7528fd 100644 Binary files a/public/images/ui/pokedex_summary_bg.png and b/public/images/ui/pokedex_summary_bg.png differ diff --git a/public/images/ui/starter_select_bg.png b/public/images/ui/starter_select_bg.png index b11cd12a5e4..14e90dd0f85 100644 Binary files a/public/images/ui/starter_select_bg.png and b/public/images/ui/starter_select_bg.png differ diff --git a/public/images/ui/summary_bg.png b/public/images/ui/summary_bg.png index ebfe87b78b2..4bdb6d0db22 100644 Binary files a/public/images/ui/summary_bg.png and b/public/images/ui/summary_bg.png differ diff --git a/public/images/ui/summary_moves.png b/public/images/ui/summary_moves.png index 618d91934f2..7f53809d052 100644 Binary files a/public/images/ui/summary_moves.png and b/public/images/ui/summary_moves.png differ diff --git a/public/images/ui/summary_moves_effect.png b/public/images/ui/summary_moves_effect.png index 7993cd0ad57..f8ead3c5263 100644 Binary files a/public/images/ui/summary_moves_effect.png and b/public/images/ui/summary_moves_effect.png differ diff --git a/public/images/ui/summary_overlay_shiny.png b/public/images/ui/summary_overlay_shiny.png deleted file mode 100644 index 956f9fb93f3..00000000000 Binary files a/public/images/ui/summary_overlay_shiny.png and /dev/null differ diff --git a/public/images/ui/summary_profile.png b/public/images/ui/summary_profile.png index 2c0c93af6b4..6362148f9d9 100644 Binary files a/public/images/ui/summary_profile.png and b/public/images/ui/summary_profile.png differ diff --git a/public/images/ui/summary_profile_ability.png b/public/images/ui/summary_profile_ability.png deleted file mode 100644 index f839a6249f8..00000000000 Binary files a/public/images/ui/summary_profile_ability.png and /dev/null differ diff --git a/public/images/ui/summary_profile_passive.png b/public/images/ui/summary_profile_passive.png deleted file mode 100644 index 1ff9ad8e09a..00000000000 Binary files a/public/images/ui/summary_profile_passive.png and /dev/null differ diff --git a/public/images/ui/summary_stats.png b/public/images/ui/summary_stats.png index d808be92fd1..bcfc55fb6aa 100644 Binary files a/public/images/ui/summary_stats.png and b/public/images/ui/summary_stats.png differ diff --git a/public/images/ui/summary_tabs_2.png b/public/images/ui/summary_tabs_2.png deleted file mode 100644 index 250c3ce7960..00000000000 Binary files a/public/images/ui/summary_tabs_2.png and /dev/null differ diff --git a/public/images/ui/summary_tabs_3.png b/public/images/ui/summary_tabs_3.png deleted file mode 100644 index 1af80fa5c0d..00000000000 Binary files a/public/images/ui/summary_tabs_3.png and /dev/null differ diff --git a/public/images/ui/text_images/ca/battle_ui/overlay_exp_label_ca.png b/public/images/ui/text_images/ca/battle_ui/overlay_exp_label_ca.png new file mode 100644 index 00000000000..fde37213eff Binary files /dev/null and b/public/images/ui/text_images/ca/battle_ui/overlay_exp_label_ca.png differ diff --git a/public/images/ui/text_images/ca/battle_ui/overlay_hp_label_boss_ca.png b/public/images/ui/text_images/ca/battle_ui/overlay_hp_label_boss_ca.png new file mode 100644 index 00000000000..0bcec679e05 Binary files /dev/null and b/public/images/ui/text_images/ca/battle_ui/overlay_hp_label_boss_ca.png differ diff --git a/public/images/ui/text_images/ca/battle_ui/overlay_hp_label_ca.png b/public/images/ui/text_images/ca/battle_ui/overlay_hp_label_ca.png new file mode 100644 index 00000000000..7c7ccba752f Binary files /dev/null and b/public/images/ui/text_images/ca/battle_ui/overlay_hp_label_ca.png differ diff --git a/public/images/ui/text_images/ca/battle_ui/overlay_lv_ca.png b/public/images/ui/text_images/ca/battle_ui/overlay_lv_ca.png new file mode 100644 index 00000000000..869a1ee0051 Binary files /dev/null and b/public/images/ui/text_images/ca/battle_ui/overlay_lv_ca.png differ diff --git a/public/images/ui/text_images/ca/battle_ui/pbinfo_stat_ca.json b/public/images/ui/text_images/ca/battle_ui/pbinfo_stat_ca.json new file mode 100644 index 00000000000..488321effd7 --- /dev/null +++ b/public/images/ui/text_images/ca/battle_ui/pbinfo_stat_ca.json @@ -0,0 +1,209 @@ +{ + "textures": [ + { + "image": "pbinfo_stat_ca.png", + "format": "RGBA8888", + "size": { + "w": 120, + "h": 9 + }, + "scale": 1, + "frames": [ + { + "filename": "SPATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 19, + "h": 9 + }, + "frame": { + "x": 0, + "y": 0, + "w": 19, + "h": 9 + } + }, + { + "filename": "SPDEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 19, + "h": 9 + }, + "frame": { + "x": 19, + "y": 0, + "w": 19, + "h": 9 + } + }, + { + "filename": "CRIT", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 17, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 17, + "h": 9 + }, + "frame": { + "x": 38, + "y": 0, + "w": 17, + "h": 9 + } + }, + { + "filename": "ACC", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 13, + "h": 9 + }, + "frame": { + "x": 55, + "y": 0, + "w": 13, + "h": 9 + } + }, + { + "filename": "ATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 13, + "h": 9 + }, + "frame": { + "x": 68, + "y": 0, + "w": 13, + "h": 9 + } + }, + { + "filename": "DEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 13, + "h": 9 + }, + "frame": { + "x": 81, + "y": 0, + "w": 13, + "h": 9 + } + }, + { + "filename": "EVA", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 13, + "h": 9 + }, + "frame": { + "x": 94, + "y": 0, + "w": 13, + "h": 9 + } + }, + { + "filename": "SPD", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 13, + "h": 9 + }, + "frame": { + "x": 107, + "y": 0, + "w": 13, + "h": 9 + } + }, + { + "filename": "HP", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 9, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 9, + "h": 9 + }, + "frame": { + "x": 120, + "y": 0, + "w": 9, + "h": 9 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:86fbd1b45d46271597a7d9de482aaa74:df702dd9d88db50369f1a096f82fd915:05882267d3999884e0491134e98b1b53$" + } +} diff --git a/public/images/ui/text_images/ca/battle_ui/pbinfo_stat_ca.png b/public/images/ui/text_images/ca/battle_ui/pbinfo_stat_ca.png new file mode 100644 index 00000000000..2b22b4f4d6f Binary files /dev/null and b/public/images/ui/text_images/ca/battle_ui/pbinfo_stat_ca.png differ diff --git a/public/images/ui/text_images/ca/party_ui/party_slot_overlay_hp_ca.png b/public/images/ui/text_images/ca/party_ui/party_slot_overlay_hp_ca.png new file mode 100644 index 00000000000..4bc95e4f95e Binary files /dev/null and b/public/images/ui/text_images/ca/party_ui/party_slot_overlay_hp_ca.png differ diff --git a/public/images/ui/text_images/ca/party_ui/party_slot_overlay_lv_ca.png b/public/images/ui/text_images/ca/party_ui/party_slot_overlay_lv_ca.png new file mode 100644 index 00000000000..c5971de4fd0 Binary files /dev/null and b/public/images/ui/text_images/ca/party_ui/party_slot_overlay_lv_ca.png differ diff --git a/public/images/ui/text_images/ca/summary/summary_dexnb_label_ca.png b/public/images/ui/text_images/ca/summary/summary_dexnb_label_ca.png new file mode 100644 index 00000000000..5477e3385a8 Binary files /dev/null and b/public/images/ui/text_images/ca/summary/summary_dexnb_label_ca.png differ diff --git a/public/images/ui/text_images/ca/summary/summary_dexnb_label_overlay_shiny_ca.png b/public/images/ui/text_images/ca/summary/summary_dexnb_label_overlay_shiny_ca.png new file mode 100644 index 00000000000..54f0c3799a0 Binary files /dev/null and b/public/images/ui/text_images/ca/summary/summary_dexnb_label_overlay_shiny_ca.png differ diff --git a/public/images/ui/text_images/ca/summary/summary_moves_descriptions_title_ca.png b/public/images/ui/text_images/ca/summary/summary_moves_descriptions_title_ca.png new file mode 100644 index 00000000000..a37aad953cc Binary files /dev/null and b/public/images/ui/text_images/ca/summary/summary_moves_descriptions_title_ca.png differ diff --git a/public/images/ui/text_images/ca/summary/summary_moves_effect_title_ca.png b/public/images/ui/text_images/ca/summary/summary_moves_effect_title_ca.png new file mode 100644 index 00000000000..ca66436eca6 Binary files /dev/null and b/public/images/ui/text_images/ca/summary/summary_moves_effect_title_ca.png differ diff --git a/public/images/ui/text_images/ca/summary/summary_moves_moves_title_ca.png b/public/images/ui/text_images/ca/summary/summary_moves_moves_title_ca.png new file mode 100644 index 00000000000..71a6889da53 Binary files /dev/null and b/public/images/ui/text_images/ca/summary/summary_moves_moves_title_ca.png differ diff --git a/public/images/ui/summary_moves_overlay_pp.png b/public/images/ui/text_images/ca/summary/summary_moves_overlay_pp_ca.png similarity index 100% rename from public/images/ui/summary_moves_overlay_pp.png rename to public/images/ui/text_images/ca/summary/summary_moves_overlay_pp_ca.png diff --git a/public/images/ui/text_images/ca/summary/summary_profile_ability_ca.png b/public/images/ui/text_images/ca/summary/summary_profile_ability_ca.png new file mode 100644 index 00000000000..2d9e8ac317d Binary files /dev/null and b/public/images/ui/text_images/ca/summary/summary_profile_ability_ca.png differ diff --git a/public/images/ui/text_images/ca/summary/summary_profile_memo_title_ca.png b/public/images/ui/text_images/ca/summary/summary_profile_memo_title_ca.png new file mode 100644 index 00000000000..b7ef7c91fc5 Binary files /dev/null and b/public/images/ui/text_images/ca/summary/summary_profile_memo_title_ca.png differ diff --git a/public/images/ui/text_images/ca/summary/summary_profile_passive_ca.png b/public/images/ui/text_images/ca/summary/summary_profile_passive_ca.png new file mode 100644 index 00000000000..a072b663d25 Binary files /dev/null and b/public/images/ui/text_images/ca/summary/summary_profile_passive_ca.png differ diff --git a/public/images/ui/text_images/ca/summary/summary_profile_profile_title_ca.png b/public/images/ui/text_images/ca/summary/summary_profile_profile_title_ca.png new file mode 100644 index 00000000000..a5ed0e3e169 Binary files /dev/null and b/public/images/ui/text_images/ca/summary/summary_profile_profile_title_ca.png differ diff --git a/public/images/ui/text_images/ca/summary/summary_stats_exp_title_ca.png b/public/images/ui/text_images/ca/summary/summary_stats_exp_title_ca.png new file mode 100644 index 00000000000..e7ac7268b54 Binary files /dev/null and b/public/images/ui/text_images/ca/summary/summary_stats_exp_title_ca.png differ diff --git a/public/images/ui/text_images/ca/summary/summary_stats_expbar_title_ca.png b/public/images/ui/text_images/ca/summary/summary_stats_expbar_title_ca.png new file mode 100644 index 00000000000..4889b64eca8 Binary files /dev/null and b/public/images/ui/text_images/ca/summary/summary_stats_expbar_title_ca.png differ diff --git a/public/images/ui/text_images/ca/summary/summary_stats_item_title_ca.png b/public/images/ui/text_images/ca/summary/summary_stats_item_title_ca.png new file mode 100644 index 00000000000..c13189fc816 Binary files /dev/null and b/public/images/ui/text_images/ca/summary/summary_stats_item_title_ca.png differ diff --git a/public/images/ui/text_images/ca/summary/summary_stats_stats_title_ca.png b/public/images/ui/text_images/ca/summary/summary_stats_stats_title_ca.png new file mode 100644 index 00000000000..426848af866 Binary files /dev/null and b/public/images/ui/text_images/ca/summary/summary_stats_stats_title_ca.png differ diff --git a/public/images/ui/text_images/ca/summary/summary_tabs_1_ca.png b/public/images/ui/text_images/ca/summary/summary_tabs_1_ca.png new file mode 100644 index 00000000000..1e1ad63672e Binary files /dev/null and b/public/images/ui/text_images/ca/summary/summary_tabs_1_ca.png differ diff --git a/public/images/ui/text_images/ca/summary/summary_tabs_2_ca.png b/public/images/ui/text_images/ca/summary/summary_tabs_2_ca.png new file mode 100644 index 00000000000..bf794e82d20 Binary files /dev/null and b/public/images/ui/text_images/ca/summary/summary_tabs_2_ca.png differ diff --git a/public/images/ui/text_images/ca/summary/summary_tabs_3_ca.png b/public/images/ui/text_images/ca/summary/summary_tabs_3_ca.png new file mode 100644 index 00000000000..6a0109997b2 Binary files /dev/null and b/public/images/ui/text_images/ca/summary/summary_tabs_3_ca.png differ diff --git a/public/images/ui/text_images/da/battle_ui/overlay_exp_label_da.png b/public/images/ui/text_images/da/battle_ui/overlay_exp_label_da.png new file mode 100644 index 00000000000..39a92725bc0 Binary files /dev/null and b/public/images/ui/text_images/da/battle_ui/overlay_exp_label_da.png differ diff --git a/public/images/ui/text_images/da/battle_ui/overlay_hp_label_boss_da.png b/public/images/ui/text_images/da/battle_ui/overlay_hp_label_boss_da.png new file mode 100644 index 00000000000..0bcec679e05 Binary files /dev/null and b/public/images/ui/text_images/da/battle_ui/overlay_hp_label_boss_da.png differ diff --git a/public/images/ui/text_images/da/battle_ui/overlay_hp_label_da.png b/public/images/ui/text_images/da/battle_ui/overlay_hp_label_da.png new file mode 100644 index 00000000000..38a34761381 Binary files /dev/null and b/public/images/ui/text_images/da/battle_ui/overlay_hp_label_da.png differ diff --git a/public/images/ui/text_images/da/battle_ui/overlay_lv_da.png b/public/images/ui/text_images/da/battle_ui/overlay_lv_da.png new file mode 100644 index 00000000000..9ad4312d561 Binary files /dev/null and b/public/images/ui/text_images/da/battle_ui/overlay_lv_da.png differ diff --git a/public/images/ui/text_images/da/battle_ui/pbinfo_stat_da.json b/public/images/ui/text_images/da/battle_ui/pbinfo_stat_da.json new file mode 100644 index 00000000000..5108fa59582 --- /dev/null +++ b/public/images/ui/text_images/da/battle_ui/pbinfo_stat_da.json @@ -0,0 +1,209 @@ +{ + "textures": [ + { + "image": "pbinfo_stat_da.png", + "format": "RGBA8888", + "size": { + "w": 120, + "h": 7 + }, + "scale": 1, + "frames": [ + { + "filename": "SPATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 7 + }, + "frame": { + "x": 0, + "y": 0, + "w": 19, + "h": 7 + } + }, + { + "filename": "SPDEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 7 + }, + "frame": { + "x": 19, + "y": 0, + "w": 19, + "h": 7 + } + }, + { + "filename": "CRIT", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 17, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 17, + "h": 7 + }, + "frame": { + "x": 38, + "y": 0, + "w": 17, + "h": 7 + } + }, + { + "filename": "ACC", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 55, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "ATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 68, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "DEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 81, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "EVA", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 94, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "SPD", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 107, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "HP", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 9, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 9, + "h": 7 + }, + "frame": { + "x": 120, + "y": 0, + "w": 9, + "h": 7 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:86fbd1b45d46271597a7d9de482aaa74:df702dd9d88db50369f1a096f82fd915:05882267d3999884e0491134e98b1b53$" + } +} diff --git a/public/images/ui/text_images/da/battle_ui/pbinfo_stat_da.png b/public/images/ui/text_images/da/battle_ui/pbinfo_stat_da.png new file mode 100644 index 00000000000..9656c5f04b9 Binary files /dev/null and b/public/images/ui/text_images/da/battle_ui/pbinfo_stat_da.png differ diff --git a/public/images/ui/text_images/da/party_ui/party_slot_overlay_hp_da.png b/public/images/ui/text_images/da/party_ui/party_slot_overlay_hp_da.png new file mode 100644 index 00000000000..9be90b5c6bb Binary files /dev/null and b/public/images/ui/text_images/da/party_ui/party_slot_overlay_hp_da.png differ diff --git a/public/images/ui/party_slot_overlay_lv.png b/public/images/ui/text_images/da/party_ui/party_slot_overlay_lv_da.png similarity index 100% rename from public/images/ui/party_slot_overlay_lv.png rename to public/images/ui/text_images/da/party_ui/party_slot_overlay_lv_da.png diff --git a/public/images/ui/text_images/da/summary/summary_dexnb_label_da.png b/public/images/ui/text_images/da/summary/summary_dexnb_label_da.png new file mode 100644 index 00000000000..ef081f493f3 Binary files /dev/null and b/public/images/ui/text_images/da/summary/summary_dexnb_label_da.png differ diff --git a/public/images/ui/text_images/da/summary/summary_dexnb_label_overlay_shiny_da.png b/public/images/ui/text_images/da/summary/summary_dexnb_label_overlay_shiny_da.png new file mode 100644 index 00000000000..2c66a714e0c Binary files /dev/null and b/public/images/ui/text_images/da/summary/summary_dexnb_label_overlay_shiny_da.png differ diff --git a/public/images/ui/text_images/da/summary/summary_moves_descriptions_title_da.png b/public/images/ui/text_images/da/summary/summary_moves_descriptions_title_da.png new file mode 100644 index 00000000000..79b16227bfe Binary files /dev/null and b/public/images/ui/text_images/da/summary/summary_moves_descriptions_title_da.png differ diff --git a/public/images/ui/text_images/da/summary/summary_moves_effect_title_da.png b/public/images/ui/text_images/da/summary/summary_moves_effect_title_da.png new file mode 100644 index 00000000000..f2ac04e62c4 Binary files /dev/null and b/public/images/ui/text_images/da/summary/summary_moves_effect_title_da.png differ diff --git a/public/images/ui/text_images/da/summary/summary_moves_moves_title_da.png b/public/images/ui/text_images/da/summary/summary_moves_moves_title_da.png new file mode 100644 index 00000000000..f1732e3e2c0 Binary files /dev/null and b/public/images/ui/text_images/da/summary/summary_moves_moves_title_da.png differ diff --git a/public/images/ui/text_images/da/summary/summary_moves_overlay_pp_da.png b/public/images/ui/text_images/da/summary/summary_moves_overlay_pp_da.png new file mode 100644 index 00000000000..04430665f8f Binary files /dev/null and b/public/images/ui/text_images/da/summary/summary_moves_overlay_pp_da.png differ diff --git a/public/images/ui/text_images/da/summary/summary_profile_ability_da.png b/public/images/ui/text_images/da/summary/summary_profile_ability_da.png new file mode 100644 index 00000000000..206b65c6cdd Binary files /dev/null and b/public/images/ui/text_images/da/summary/summary_profile_ability_da.png differ diff --git a/public/images/ui/text_images/da/summary/summary_profile_memo_title_da.png b/public/images/ui/text_images/da/summary/summary_profile_memo_title_da.png new file mode 100644 index 00000000000..48886d25e39 Binary files /dev/null and b/public/images/ui/text_images/da/summary/summary_profile_memo_title_da.png differ diff --git a/public/images/ui/text_images/da/summary/summary_profile_passive_da.png b/public/images/ui/text_images/da/summary/summary_profile_passive_da.png new file mode 100644 index 00000000000..681ae3f1b5e Binary files /dev/null and b/public/images/ui/text_images/da/summary/summary_profile_passive_da.png differ diff --git a/public/images/ui/text_images/da/summary/summary_profile_profile_title_da.png b/public/images/ui/text_images/da/summary/summary_profile_profile_title_da.png new file mode 100644 index 00000000000..83b8a1d5e99 Binary files /dev/null and b/public/images/ui/text_images/da/summary/summary_profile_profile_title_da.png differ diff --git a/public/images/ui/text_images/da/summary/summary_stats_exp_title_da.png b/public/images/ui/text_images/da/summary/summary_stats_exp_title_da.png new file mode 100644 index 00000000000..feae0c9cb90 Binary files /dev/null and b/public/images/ui/text_images/da/summary/summary_stats_exp_title_da.png differ diff --git a/public/images/ui/text_images/da/summary/summary_stats_expbar_title_da.png b/public/images/ui/text_images/da/summary/summary_stats_expbar_title_da.png new file mode 100644 index 00000000000..566dd844aa6 Binary files /dev/null and b/public/images/ui/text_images/da/summary/summary_stats_expbar_title_da.png differ diff --git a/public/images/ui/text_images/da/summary/summary_stats_item_title_da.png b/public/images/ui/text_images/da/summary/summary_stats_item_title_da.png new file mode 100644 index 00000000000..2cbce6c3dcf Binary files /dev/null and b/public/images/ui/text_images/da/summary/summary_stats_item_title_da.png differ diff --git a/public/images/ui/text_images/da/summary/summary_stats_stats_title_da.png b/public/images/ui/text_images/da/summary/summary_stats_stats_title_da.png new file mode 100644 index 00000000000..ff97416c7ed Binary files /dev/null and b/public/images/ui/text_images/da/summary/summary_stats_stats_title_da.png differ diff --git a/public/images/ui/summary_tabs_1.png b/public/images/ui/text_images/da/summary/summary_tabs_1_da.png similarity index 100% rename from public/images/ui/summary_tabs_1.png rename to public/images/ui/text_images/da/summary/summary_tabs_1_da.png diff --git a/public/images/ui/text_images/da/summary/summary_tabs_2_da.png b/public/images/ui/text_images/da/summary/summary_tabs_2_da.png new file mode 100644 index 00000000000..e8dd00bc7e0 Binary files /dev/null and b/public/images/ui/text_images/da/summary/summary_tabs_2_da.png differ diff --git a/public/images/ui/text_images/da/summary/summary_tabs_3_da.png b/public/images/ui/text_images/da/summary/summary_tabs_3_da.png new file mode 100644 index 00000000000..a274f79e4e2 Binary files /dev/null and b/public/images/ui/text_images/da/summary/summary_tabs_3_da.png differ diff --git a/public/images/ui/text_images/de/battle_ui/overlay_exp_label_de.png b/public/images/ui/text_images/de/battle_ui/overlay_exp_label_de.png new file mode 100644 index 00000000000..39a92725bc0 Binary files /dev/null and b/public/images/ui/text_images/de/battle_ui/overlay_exp_label_de.png differ diff --git a/public/images/ui/text_images/de/battle_ui/overlay_hp_label_boss_de.png b/public/images/ui/text_images/de/battle_ui/overlay_hp_label_boss_de.png new file mode 100644 index 00000000000..0bcec679e05 Binary files /dev/null and b/public/images/ui/text_images/de/battle_ui/overlay_hp_label_boss_de.png differ diff --git a/public/images/ui/text_images/de/battle_ui/overlay_hp_label_de.png b/public/images/ui/text_images/de/battle_ui/overlay_hp_label_de.png new file mode 100644 index 00000000000..8b227eebd7a Binary files /dev/null and b/public/images/ui/text_images/de/battle_ui/overlay_hp_label_de.png differ diff --git a/public/images/ui/text_images/de/battle_ui/overlay_lv_de.png b/public/images/ui/text_images/de/battle_ui/overlay_lv_de.png new file mode 100644 index 00000000000..9ad4312d561 Binary files /dev/null and b/public/images/ui/text_images/de/battle_ui/overlay_lv_de.png differ diff --git a/public/images/ui/text_images/de/battle_ui/pbinfo_stat_de.json b/public/images/ui/text_images/de/battle_ui/pbinfo_stat_de.json new file mode 100644 index 00000000000..dbf39c94059 --- /dev/null +++ b/public/images/ui/text_images/de/battle_ui/pbinfo_stat_de.json @@ -0,0 +1,209 @@ +{ + "textures": [ + { + "image": "pbinfo_stat_de.png", + "format": "RGBA8888", + "size": { + "w": 120, + "h": 7 + }, + "scale": 1, + "frames": [ + { + "filename": "SPATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 7 + }, + "frame": { + "x": 0, + "y": 0, + "w": 19, + "h": 7 + } + }, + { + "filename": "SPDEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 7 + }, + "frame": { + "x": 19, + "y": 0, + "w": 19, + "h": 7 + } + }, + { + "filename": "CRIT", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 17, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 17, + "h": 7 + }, + "frame": { + "x": 38, + "y": 0, + "w": 17, + "h": 7 + } + }, + { + "filename": "ACC", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 55, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "ATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 68, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "DEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 81, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "EVA", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 94, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "SPD", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 107, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "HP", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 9, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 9, + "h": 7 + }, + "frame": { + "x": 120, + "y": 0, + "w": 9, + "h": 7 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:86fbd1b45d46271597a7d9de482aaa74:df702dd9d88db50369f1a096f82fd915:05882267d3999884e0491134e98b1b53$" + } +} diff --git a/public/images/ui/text_images/de/battle_ui/pbinfo_stat_de.png b/public/images/ui/text_images/de/battle_ui/pbinfo_stat_de.png new file mode 100644 index 00000000000..b8bcb6138b9 Binary files /dev/null and b/public/images/ui/text_images/de/battle_ui/pbinfo_stat_de.png differ diff --git a/public/images/ui/text_images/de/party_ui/party_slot_overlay_hp_de.png b/public/images/ui/text_images/de/party_ui/party_slot_overlay_hp_de.png new file mode 100644 index 00000000000..47ac22e52cb Binary files /dev/null and b/public/images/ui/text_images/de/party_ui/party_slot_overlay_hp_de.png differ diff --git a/public/images/ui/text_images/de/party_ui/party_slot_overlay_lv_de.png b/public/images/ui/text_images/de/party_ui/party_slot_overlay_lv_de.png new file mode 100644 index 00000000000..122d3f7151c Binary files /dev/null and b/public/images/ui/text_images/de/party_ui/party_slot_overlay_lv_de.png differ diff --git a/public/images/ui/text_images/de/summary/summary_dexnb_label_de.png b/public/images/ui/text_images/de/summary/summary_dexnb_label_de.png new file mode 100644 index 00000000000..ef081f493f3 Binary files /dev/null and b/public/images/ui/text_images/de/summary/summary_dexnb_label_de.png differ diff --git a/public/images/ui/text_images/de/summary/summary_dexnb_label_overlay_shiny_de.png b/public/images/ui/text_images/de/summary/summary_dexnb_label_overlay_shiny_de.png new file mode 100644 index 00000000000..2c66a714e0c Binary files /dev/null and b/public/images/ui/text_images/de/summary/summary_dexnb_label_overlay_shiny_de.png differ diff --git a/public/images/ui/text_images/de/summary/summary_moves_descriptions_title_de.png b/public/images/ui/text_images/de/summary/summary_moves_descriptions_title_de.png new file mode 100644 index 00000000000..ea4827c081d Binary files /dev/null and b/public/images/ui/text_images/de/summary/summary_moves_descriptions_title_de.png differ diff --git a/public/images/ui/text_images/de/summary/summary_moves_effect_title_de.png b/public/images/ui/text_images/de/summary/summary_moves_effect_title_de.png new file mode 100644 index 00000000000..951e9281839 Binary files /dev/null and b/public/images/ui/text_images/de/summary/summary_moves_effect_title_de.png differ diff --git a/public/images/ui/text_images/de/summary/summary_moves_moves_title_de.png b/public/images/ui/text_images/de/summary/summary_moves_moves_title_de.png new file mode 100644 index 00000000000..d5e28d3dfe7 Binary files /dev/null and b/public/images/ui/text_images/de/summary/summary_moves_moves_title_de.png differ diff --git a/public/images/ui/text_images/de/summary/summary_moves_overlay_pp_de.png b/public/images/ui/text_images/de/summary/summary_moves_overlay_pp_de.png new file mode 100644 index 00000000000..5db3861fbc9 Binary files /dev/null and b/public/images/ui/text_images/de/summary/summary_moves_overlay_pp_de.png differ diff --git a/public/images/ui/text_images/de/summary/summary_profile_ability_de.png b/public/images/ui/text_images/de/summary/summary_profile_ability_de.png new file mode 100644 index 00000000000..2b6bd055555 Binary files /dev/null and b/public/images/ui/text_images/de/summary/summary_profile_ability_de.png differ diff --git a/public/images/ui/text_images/de/summary/summary_profile_memo_title_de.png b/public/images/ui/text_images/de/summary/summary_profile_memo_title_de.png new file mode 100644 index 00000000000..089668218fa Binary files /dev/null and b/public/images/ui/text_images/de/summary/summary_profile_memo_title_de.png differ diff --git a/public/images/ui/text_images/de/summary/summary_profile_passive_de.png b/public/images/ui/text_images/de/summary/summary_profile_passive_de.png new file mode 100644 index 00000000000..681ae3f1b5e Binary files /dev/null and b/public/images/ui/text_images/de/summary/summary_profile_passive_de.png differ diff --git a/public/images/ui/text_images/de/summary/summary_profile_profile_title_de.png b/public/images/ui/text_images/de/summary/summary_profile_profile_title_de.png new file mode 100644 index 00000000000..83b8a1d5e99 Binary files /dev/null and b/public/images/ui/text_images/de/summary/summary_profile_profile_title_de.png differ diff --git a/public/images/ui/text_images/de/summary/summary_stats_exp_title_de.png b/public/images/ui/text_images/de/summary/summary_stats_exp_title_de.png new file mode 100644 index 00000000000..fa702b4c223 Binary files /dev/null and b/public/images/ui/text_images/de/summary/summary_stats_exp_title_de.png differ diff --git a/public/images/ui/text_images/de/summary/summary_stats_expbar_title_de.png b/public/images/ui/text_images/de/summary/summary_stats_expbar_title_de.png new file mode 100644 index 00000000000..566dd844aa6 Binary files /dev/null and b/public/images/ui/text_images/de/summary/summary_stats_expbar_title_de.png differ diff --git a/public/images/ui/text_images/de/summary/summary_stats_item_title_de.png b/public/images/ui/text_images/de/summary/summary_stats_item_title_de.png new file mode 100644 index 00000000000..42e08b3e52a Binary files /dev/null and b/public/images/ui/text_images/de/summary/summary_stats_item_title_de.png differ diff --git a/public/images/ui/text_images/de/summary/summary_stats_stats_title_de.png b/public/images/ui/text_images/de/summary/summary_stats_stats_title_de.png new file mode 100644 index 00000000000..87438a5bd4f Binary files /dev/null and b/public/images/ui/text_images/de/summary/summary_stats_stats_title_de.png differ diff --git a/public/images/ui/text_images/de/summary/summary_tabs_1_de.png b/public/images/ui/text_images/de/summary/summary_tabs_1_de.png new file mode 100644 index 00000000000..9c3e6c795b4 Binary files /dev/null and b/public/images/ui/text_images/de/summary/summary_tabs_1_de.png differ diff --git a/public/images/ui/text_images/de/summary/summary_tabs_2_de.png b/public/images/ui/text_images/de/summary/summary_tabs_2_de.png new file mode 100644 index 00000000000..750c407b075 Binary files /dev/null and b/public/images/ui/text_images/de/summary/summary_tabs_2_de.png differ diff --git a/public/images/ui/text_images/de/summary/summary_tabs_3_de.png b/public/images/ui/text_images/de/summary/summary_tabs_3_de.png new file mode 100644 index 00000000000..297df98c111 Binary files /dev/null and b/public/images/ui/text_images/de/summary/summary_tabs_3_de.png differ diff --git a/public/images/ui/text_images/en/battle_ui/overlay_exp_label.png b/public/images/ui/text_images/en/battle_ui/overlay_exp_label.png new file mode 100644 index 00000000000..fde37213eff Binary files /dev/null and b/public/images/ui/text_images/en/battle_ui/overlay_exp_label.png differ diff --git a/public/images/ui/text_images/en/battle_ui/overlay_hp_label.png b/public/images/ui/text_images/en/battle_ui/overlay_hp_label.png new file mode 100644 index 00000000000..38a34761381 Binary files /dev/null and b/public/images/ui/text_images/en/battle_ui/overlay_hp_label.png differ diff --git a/public/images/ui/text_images/en/battle_ui/overlay_hp_label_boss.png b/public/images/ui/text_images/en/battle_ui/overlay_hp_label_boss.png new file mode 100644 index 00000000000..0bcec679e05 Binary files /dev/null and b/public/images/ui/text_images/en/battle_ui/overlay_hp_label_boss.png differ diff --git a/public/images/ui/text_images/en/battle_ui/overlay_lv.png b/public/images/ui/text_images/en/battle_ui/overlay_lv.png new file mode 100644 index 00000000000..9ad4312d561 Binary files /dev/null and b/public/images/ui/text_images/en/battle_ui/overlay_lv.png differ diff --git a/public/images/ui/pbinfo_stat.json b/public/images/ui/text_images/en/battle_ui/pbinfo_stat.json similarity index 100% rename from public/images/ui/pbinfo_stat.json rename to public/images/ui/text_images/en/battle_ui/pbinfo_stat.json diff --git a/public/images/ui/text_images/en/battle_ui/pbinfo_stat.png b/public/images/ui/text_images/en/battle_ui/pbinfo_stat.png new file mode 100644 index 00000000000..9656c5f04b9 Binary files /dev/null and b/public/images/ui/text_images/en/battle_ui/pbinfo_stat.png differ diff --git a/public/images/ui/text_images/en/party_ui/party_slot_overlay_hp.png b/public/images/ui/text_images/en/party_ui/party_slot_overlay_hp.png new file mode 100644 index 00000000000..9be90b5c6bb Binary files /dev/null and b/public/images/ui/text_images/en/party_ui/party_slot_overlay_hp.png differ diff --git a/public/images/ui/text_images/en/party_ui/party_slot_overlay_lv.png b/public/images/ui/text_images/en/party_ui/party_slot_overlay_lv.png new file mode 100644 index 00000000000..122d3f7151c Binary files /dev/null and b/public/images/ui/text_images/en/party_ui/party_slot_overlay_lv.png differ diff --git a/public/images/ui/text_images/en/summary/summary_dexnb_label.png b/public/images/ui/text_images/en/summary/summary_dexnb_label.png new file mode 100644 index 00000000000..bf568c486aa Binary files /dev/null and b/public/images/ui/text_images/en/summary/summary_dexnb_label.png differ diff --git a/public/images/ui/text_images/en/summary/summary_dexnb_label_overlay_shiny.png b/public/images/ui/text_images/en/summary/summary_dexnb_label_overlay_shiny.png new file mode 100644 index 00000000000..f35e327c29a Binary files /dev/null and b/public/images/ui/text_images/en/summary/summary_dexnb_label_overlay_shiny.png differ diff --git a/public/images/ui/text_images/en/summary/summary_moves_descriptions_title.png b/public/images/ui/text_images/en/summary/summary_moves_descriptions_title.png new file mode 100644 index 00000000000..e83e8cafbfc Binary files /dev/null and b/public/images/ui/text_images/en/summary/summary_moves_descriptions_title.png differ diff --git a/public/images/ui/text_images/en/summary/summary_moves_effect_title.png b/public/images/ui/text_images/en/summary/summary_moves_effect_title.png new file mode 100644 index 00000000000..fbbaac0b260 Binary files /dev/null and b/public/images/ui/text_images/en/summary/summary_moves_effect_title.png differ diff --git a/public/images/ui/text_images/en/summary/summary_moves_moves_title.png b/public/images/ui/text_images/en/summary/summary_moves_moves_title.png new file mode 100644 index 00000000000..6bbb29c9c5f Binary files /dev/null and b/public/images/ui/text_images/en/summary/summary_moves_moves_title.png differ diff --git a/public/images/ui/text_images/en/summary/summary_moves_overlay_pp.png b/public/images/ui/text_images/en/summary/summary_moves_overlay_pp.png new file mode 100644 index 00000000000..a2bcd0bd021 Binary files /dev/null and b/public/images/ui/text_images/en/summary/summary_moves_overlay_pp.png differ diff --git a/public/images/ui/text_images/en/summary/summary_profile_ability.png b/public/images/ui/text_images/en/summary/summary_profile_ability.png new file mode 100644 index 00000000000..a05c22b7d47 Binary files /dev/null and b/public/images/ui/text_images/en/summary/summary_profile_ability.png differ diff --git a/public/images/ui/text_images/en/summary/summary_profile_memo_title.png b/public/images/ui/text_images/en/summary/summary_profile_memo_title.png new file mode 100644 index 00000000000..3d69c20e57f Binary files /dev/null and b/public/images/ui/text_images/en/summary/summary_profile_memo_title.png differ diff --git a/public/images/ui/text_images/en/summary/summary_profile_passive.png b/public/images/ui/text_images/en/summary/summary_profile_passive.png new file mode 100644 index 00000000000..c026e87a215 Binary files /dev/null and b/public/images/ui/text_images/en/summary/summary_profile_passive.png differ diff --git a/public/images/ui/text_images/en/summary/summary_profile_profile_title.png b/public/images/ui/text_images/en/summary/summary_profile_profile_title.png new file mode 100644 index 00000000000..4170dccf682 Binary files /dev/null and b/public/images/ui/text_images/en/summary/summary_profile_profile_title.png differ diff --git a/public/images/ui/text_images/en/summary/summary_stats_exp_title.png b/public/images/ui/text_images/en/summary/summary_stats_exp_title.png new file mode 100644 index 00000000000..d0d8d7f81a1 Binary files /dev/null and b/public/images/ui/text_images/en/summary/summary_stats_exp_title.png differ diff --git a/public/images/ui/text_images/en/summary/summary_stats_expbar_title.png b/public/images/ui/text_images/en/summary/summary_stats_expbar_title.png new file mode 100644 index 00000000000..4889b64eca8 Binary files /dev/null and b/public/images/ui/text_images/en/summary/summary_stats_expbar_title.png differ diff --git a/public/images/ui/text_images/en/summary/summary_stats_item_title.png b/public/images/ui/text_images/en/summary/summary_stats_item_title.png new file mode 100644 index 00000000000..42e08b3e52a Binary files /dev/null and b/public/images/ui/text_images/en/summary/summary_stats_item_title.png differ diff --git a/public/images/ui/text_images/en/summary/summary_stats_stats_title.png b/public/images/ui/text_images/en/summary/summary_stats_stats_title.png new file mode 100644 index 00000000000..f602a43c39d Binary files /dev/null and b/public/images/ui/text_images/en/summary/summary_stats_stats_title.png differ diff --git a/public/images/ui/text_images/en/summary/summary_tabs_1.png b/public/images/ui/text_images/en/summary/summary_tabs_1.png new file mode 100644 index 00000000000..750c407b075 Binary files /dev/null and b/public/images/ui/text_images/en/summary/summary_tabs_1.png differ diff --git a/public/images/ui/text_images/en/summary/summary_tabs_2.png b/public/images/ui/text_images/en/summary/summary_tabs_2.png new file mode 100644 index 00000000000..50c1db1f34c Binary files /dev/null and b/public/images/ui/text_images/en/summary/summary_tabs_2.png differ diff --git a/public/images/ui/text_images/en/summary/summary_tabs_3.png b/public/images/ui/text_images/en/summary/summary_tabs_3.png new file mode 100644 index 00000000000..24676712fb9 Binary files /dev/null and b/public/images/ui/text_images/en/summary/summary_tabs_3.png differ diff --git a/public/images/ui/text_images/es-ES/battle_ui/overlay_exp_label_es-ES.png b/public/images/ui/text_images/es-ES/battle_ui/overlay_exp_label_es-ES.png new file mode 100644 index 00000000000..fde37213eff Binary files /dev/null and b/public/images/ui/text_images/es-ES/battle_ui/overlay_exp_label_es-ES.png differ diff --git a/public/images/ui/text_images/es-ES/battle_ui/overlay_hp_label_boss_es-ES.png b/public/images/ui/text_images/es-ES/battle_ui/overlay_hp_label_boss_es-ES.png new file mode 100644 index 00000000000..440ba6136dc Binary files /dev/null and b/public/images/ui/text_images/es-ES/battle_ui/overlay_hp_label_boss_es-ES.png differ diff --git a/public/images/ui/text_images/es-ES/battle_ui/overlay_hp_label_es-ES.png b/public/images/ui/text_images/es-ES/battle_ui/overlay_hp_label_es-ES.png new file mode 100644 index 00000000000..7c7ccba752f Binary files /dev/null and b/public/images/ui/text_images/es-ES/battle_ui/overlay_hp_label_es-ES.png differ diff --git a/public/images/ui/text_images/es-ES/battle_ui/overlay_lv_es-ES.png b/public/images/ui/text_images/es-ES/battle_ui/overlay_lv_es-ES.png new file mode 100644 index 00000000000..869a1ee0051 Binary files /dev/null and b/public/images/ui/text_images/es-ES/battle_ui/overlay_lv_es-ES.png differ diff --git a/public/images/ui/text_images/es-ES/battle_ui/pbinfo_stat_es-ES.json b/public/images/ui/text_images/es-ES/battle_ui/pbinfo_stat_es-ES.json new file mode 100644 index 00000000000..1af1d7108bc --- /dev/null +++ b/public/images/ui/text_images/es-ES/battle_ui/pbinfo_stat_es-ES.json @@ -0,0 +1,209 @@ +{ + "textures": [ + { + "image": "pbinfo_stat_es-ES.png", + "format": "RGBA8888", + "size": { + "w": 120, + "h": 9 + }, + "scale": 1, + "frames": [ + { + "filename": "SPATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 19, + "h": 9 + }, + "frame": { + "x": 0, + "y": 0, + "w": 19, + "h": 9 + } + }, + { + "filename": "SPDEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 19, + "h": 9 + }, + "frame": { + "x": 19, + "y": 0, + "w": 19, + "h": 9 + } + }, + { + "filename": "CRIT", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 17, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 17, + "h": 9 + }, + "frame": { + "x": 38, + "y": 0, + "w": 17, + "h": 9 + } + }, + { + "filename": "ACC", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 13, + "h": 9 + }, + "frame": { + "x": 55, + "y": 0, + "w": 13, + "h": 9 + } + }, + { + "filename": "ATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 13, + "h": 9 + }, + "frame": { + "x": 68, + "y": 0, + "w": 13, + "h": 9 + } + }, + { + "filename": "DEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 13, + "h": 9 + }, + "frame": { + "x": 81, + "y": 0, + "w": 13, + "h": 9 + } + }, + { + "filename": "EVA", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 13, + "h": 9 + }, + "frame": { + "x": 94, + "y": 0, + "w": 13, + "h": 9 + } + }, + { + "filename": "SPD", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 13, + "h": 9 + }, + "frame": { + "x": 107, + "y": 0, + "w": 13, + "h": 9 + } + }, + { + "filename": "HP", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 9, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 9, + "h": 9 + }, + "frame": { + "x": 120, + "y": 0, + "w": 9, + "h": 9 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:86fbd1b45d46271597a7d9de482aaa74:df702dd9d88db50369f1a096f82fd915:05882267d3999884e0491134e98b1b53$" + } +} diff --git a/public/images/ui/text_images/es-ES/battle_ui/pbinfo_stat_es-ES.png b/public/images/ui/text_images/es-ES/battle_ui/pbinfo_stat_es-ES.png new file mode 100644 index 00000000000..63f8215113f Binary files /dev/null and b/public/images/ui/text_images/es-ES/battle_ui/pbinfo_stat_es-ES.png differ diff --git a/public/images/ui/text_images/es-ES/party_ui/party_slot_overlay_hp_es-ES.png b/public/images/ui/text_images/es-ES/party_ui/party_slot_overlay_hp_es-ES.png new file mode 100644 index 00000000000..4bc95e4f95e Binary files /dev/null and b/public/images/ui/text_images/es-ES/party_ui/party_slot_overlay_hp_es-ES.png differ diff --git a/public/images/ui/text_images/es-ES/party_ui/party_slot_overlay_lv_es-ES.png b/public/images/ui/text_images/es-ES/party_ui/party_slot_overlay_lv_es-ES.png new file mode 100644 index 00000000000..c5971de4fd0 Binary files /dev/null and b/public/images/ui/text_images/es-ES/party_ui/party_slot_overlay_lv_es-ES.png differ diff --git a/public/images/ui/text_images/es-ES/summary/summary_dexnb_label_es-ES.png b/public/images/ui/text_images/es-ES/summary/summary_dexnb_label_es-ES.png new file mode 100644 index 00000000000..5477e3385a8 Binary files /dev/null and b/public/images/ui/text_images/es-ES/summary/summary_dexnb_label_es-ES.png differ diff --git a/public/images/ui/text_images/es-ES/summary/summary_dexnb_label_overlay_shiny_es-ES.png b/public/images/ui/text_images/es-ES/summary/summary_dexnb_label_overlay_shiny_es-ES.png new file mode 100644 index 00000000000..54f0c3799a0 Binary files /dev/null and b/public/images/ui/text_images/es-ES/summary/summary_dexnb_label_overlay_shiny_es-ES.png differ diff --git a/public/images/ui/text_images/es-ES/summary/summary_moves_descriptions_title_es-ES.png b/public/images/ui/text_images/es-ES/summary/summary_moves_descriptions_title_es-ES.png new file mode 100644 index 00000000000..3a4e3c7c375 Binary files /dev/null and b/public/images/ui/text_images/es-ES/summary/summary_moves_descriptions_title_es-ES.png differ diff --git a/public/images/ui/text_images/es-ES/summary/summary_moves_effect_title_es-ES.png b/public/images/ui/text_images/es-ES/summary/summary_moves_effect_title_es-ES.png new file mode 100644 index 00000000000..cf8d1309848 Binary files /dev/null and b/public/images/ui/text_images/es-ES/summary/summary_moves_effect_title_es-ES.png differ diff --git a/public/images/ui/text_images/es-ES/summary/summary_moves_moves_title_es-ES.png b/public/images/ui/text_images/es-ES/summary/summary_moves_moves_title_es-ES.png new file mode 100644 index 00000000000..a601ae79e4f Binary files /dev/null and b/public/images/ui/text_images/es-ES/summary/summary_moves_moves_title_es-ES.png differ diff --git a/public/images/ui/text_images/es-ES/summary/summary_moves_overlay_pp_es-ES.png b/public/images/ui/text_images/es-ES/summary/summary_moves_overlay_pp_es-ES.png new file mode 100644 index 00000000000..a2bcd0bd021 Binary files /dev/null and b/public/images/ui/text_images/es-ES/summary/summary_moves_overlay_pp_es-ES.png differ diff --git a/public/images/ui/text_images/es-ES/summary/summary_profile_ability_es-ES.png b/public/images/ui/text_images/es-ES/summary/summary_profile_ability_es-ES.png new file mode 100644 index 00000000000..71bffe95cfe Binary files /dev/null and b/public/images/ui/text_images/es-ES/summary/summary_profile_ability_es-ES.png differ diff --git a/public/images/ui/text_images/es-ES/summary/summary_profile_memo_title_es-ES.png b/public/images/ui/text_images/es-ES/summary/summary_profile_memo_title_es-ES.png new file mode 100644 index 00000000000..b7ef7c91fc5 Binary files /dev/null and b/public/images/ui/text_images/es-ES/summary/summary_profile_memo_title_es-ES.png differ diff --git a/public/images/ui/text_images/es-ES/summary/summary_profile_passive_es-ES.png b/public/images/ui/text_images/es-ES/summary/summary_profile_passive_es-ES.png new file mode 100644 index 00000000000..a50e3cacf58 Binary files /dev/null and b/public/images/ui/text_images/es-ES/summary/summary_profile_passive_es-ES.png differ diff --git a/public/images/ui/text_images/es-ES/summary/summary_profile_profile_title_es-ES.png b/public/images/ui/text_images/es-ES/summary/summary_profile_profile_title_es-ES.png new file mode 100644 index 00000000000..a5ed0e3e169 Binary files /dev/null and b/public/images/ui/text_images/es-ES/summary/summary_profile_profile_title_es-ES.png differ diff --git a/public/images/ui/text_images/es-ES/summary/summary_stats_exp_title_es-ES.png b/public/images/ui/text_images/es-ES/summary/summary_stats_exp_title_es-ES.png new file mode 100644 index 00000000000..7c8a80f0627 Binary files /dev/null and b/public/images/ui/text_images/es-ES/summary/summary_stats_exp_title_es-ES.png differ diff --git a/public/images/ui/text_images/es-ES/summary/summary_stats_expbar_title_es-ES.png b/public/images/ui/text_images/es-ES/summary/summary_stats_expbar_title_es-ES.png new file mode 100644 index 00000000000..4889b64eca8 Binary files /dev/null and b/public/images/ui/text_images/es-ES/summary/summary_stats_expbar_title_es-ES.png differ diff --git a/public/images/ui/text_images/es-ES/summary/summary_stats_item_title_es-ES.png b/public/images/ui/text_images/es-ES/summary/summary_stats_item_title_es-ES.png new file mode 100644 index 00000000000..9236aaa1ff8 Binary files /dev/null and b/public/images/ui/text_images/es-ES/summary/summary_stats_item_title_es-ES.png differ diff --git a/public/images/ui/text_images/es-ES/summary/summary_stats_stats_title_es-ES.png b/public/images/ui/text_images/es-ES/summary/summary_stats_stats_title_es-ES.png new file mode 100644 index 00000000000..5b59c12984f Binary files /dev/null and b/public/images/ui/text_images/es-ES/summary/summary_stats_stats_title_es-ES.png differ diff --git a/public/images/ui/text_images/es-ES/summary/summary_tabs_1_es-ES.png b/public/images/ui/text_images/es-ES/summary/summary_tabs_1_es-ES.png new file mode 100644 index 00000000000..99f187c396f Binary files /dev/null and b/public/images/ui/text_images/es-ES/summary/summary_tabs_1_es-ES.png differ diff --git a/public/images/ui/text_images/es-ES/summary/summary_tabs_2_es-ES.png b/public/images/ui/text_images/es-ES/summary/summary_tabs_2_es-ES.png new file mode 100644 index 00000000000..c841de2c12c Binary files /dev/null and b/public/images/ui/text_images/es-ES/summary/summary_tabs_2_es-ES.png differ diff --git a/public/images/ui/text_images/es-ES/summary/summary_tabs_3_es-ES.png b/public/images/ui/text_images/es-ES/summary/summary_tabs_3_es-ES.png new file mode 100644 index 00000000000..805fec323dd Binary files /dev/null and b/public/images/ui/text_images/es-ES/summary/summary_tabs_3_es-ES.png differ diff --git a/public/images/ui/text_images/es-MX/battle_ui/overlay_exp_label_es-MX.png b/public/images/ui/text_images/es-MX/battle_ui/overlay_exp_label_es-MX.png new file mode 100644 index 00000000000..fde37213eff Binary files /dev/null and b/public/images/ui/text_images/es-MX/battle_ui/overlay_exp_label_es-MX.png differ diff --git a/public/images/ui/text_images/es-MX/battle_ui/overlay_hp_label_boss_es-MX.png b/public/images/ui/text_images/es-MX/battle_ui/overlay_hp_label_boss_es-MX.png new file mode 100644 index 00000000000..440ba6136dc Binary files /dev/null and b/public/images/ui/text_images/es-MX/battle_ui/overlay_hp_label_boss_es-MX.png differ diff --git a/public/images/ui/text_images/es-MX/battle_ui/overlay_hp_label_es-MX.png b/public/images/ui/text_images/es-MX/battle_ui/overlay_hp_label_es-MX.png new file mode 100644 index 00000000000..7c7ccba752f Binary files /dev/null and b/public/images/ui/text_images/es-MX/battle_ui/overlay_hp_label_es-MX.png differ diff --git a/public/images/ui/text_images/es-MX/battle_ui/overlay_lv_es-MX.png b/public/images/ui/text_images/es-MX/battle_ui/overlay_lv_es-MX.png new file mode 100644 index 00000000000..869a1ee0051 Binary files /dev/null and b/public/images/ui/text_images/es-MX/battle_ui/overlay_lv_es-MX.png differ diff --git a/public/images/ui/text_images/es-MX/battle_ui/pbinfo_stat_es-MX.json b/public/images/ui/text_images/es-MX/battle_ui/pbinfo_stat_es-MX.json new file mode 100644 index 00000000000..b372566656b --- /dev/null +++ b/public/images/ui/text_images/es-MX/battle_ui/pbinfo_stat_es-MX.json @@ -0,0 +1,209 @@ +{ + "textures": [ + { + "image": "pbinfo_stat_es-MX.png", + "format": "RGBA8888", + "size": { + "w": 120, + "h": 9 + }, + "scale": 1, + "frames": [ + { + "filename": "SPATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 19, + "h": 9 + }, + "frame": { + "x": 0, + "y": 0, + "w": 19, + "h": 9 + } + }, + { + "filename": "SPDEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 19, + "h": 9 + }, + "frame": { + "x": 19, + "y": 0, + "w": 19, + "h": 9 + } + }, + { + "filename": "CRIT", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 17, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 17, + "h": 9 + }, + "frame": { + "x": 38, + "y": 0, + "w": 17, + "h": 9 + } + }, + { + "filename": "ACC", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 13, + "h": 9 + }, + "frame": { + "x": 55, + "y": 0, + "w": 13, + "h": 9 + } + }, + { + "filename": "ATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 13, + "h": 9 + }, + "frame": { + "x": 68, + "y": 0, + "w": 13, + "h": 9 + } + }, + { + "filename": "DEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 13, + "h": 9 + }, + "frame": { + "x": 81, + "y": 0, + "w": 13, + "h": 9 + } + }, + { + "filename": "EVA", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 13, + "h": 9 + }, + "frame": { + "x": 94, + "y": 0, + "w": 13, + "h": 9 + } + }, + { + "filename": "SPD", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 13, + "h": 9 + }, + "frame": { + "x": 107, + "y": 0, + "w": 13, + "h": 9 + } + }, + { + "filename": "HP", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 9, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 9, + "h": 9 + }, + "frame": { + "x": 120, + "y": 0, + "w": 9, + "h": 9 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:86fbd1b45d46271597a7d9de482aaa74:df702dd9d88db50369f1a096f82fd915:05882267d3999884e0491134e98b1b53$" + } +} diff --git a/public/images/ui/text_images/es-MX/battle_ui/pbinfo_stat_es-MX.png b/public/images/ui/text_images/es-MX/battle_ui/pbinfo_stat_es-MX.png new file mode 100644 index 00000000000..63f8215113f Binary files /dev/null and b/public/images/ui/text_images/es-MX/battle_ui/pbinfo_stat_es-MX.png differ diff --git a/public/images/ui/text_images/es-MX/party_ui/party_slot_overlay_hp_es-MX.png b/public/images/ui/text_images/es-MX/party_ui/party_slot_overlay_hp_es-MX.png new file mode 100644 index 00000000000..4bc95e4f95e Binary files /dev/null and b/public/images/ui/text_images/es-MX/party_ui/party_slot_overlay_hp_es-MX.png differ diff --git a/public/images/ui/text_images/es-MX/party_ui/party_slot_overlay_lv_es-MX.png b/public/images/ui/text_images/es-MX/party_ui/party_slot_overlay_lv_es-MX.png new file mode 100644 index 00000000000..c5971de4fd0 Binary files /dev/null and b/public/images/ui/text_images/es-MX/party_ui/party_slot_overlay_lv_es-MX.png differ diff --git a/public/images/ui/text_images/es-MX/summary/summary_dexnb_label_es-MX.png b/public/images/ui/text_images/es-MX/summary/summary_dexnb_label_es-MX.png new file mode 100644 index 00000000000..5477e3385a8 Binary files /dev/null and b/public/images/ui/text_images/es-MX/summary/summary_dexnb_label_es-MX.png differ diff --git a/public/images/ui/text_images/es-MX/summary/summary_dexnb_label_overlay_shiny_es-MX.png b/public/images/ui/text_images/es-MX/summary/summary_dexnb_label_overlay_shiny_es-MX.png new file mode 100644 index 00000000000..54f0c3799a0 Binary files /dev/null and b/public/images/ui/text_images/es-MX/summary/summary_dexnb_label_overlay_shiny_es-MX.png differ diff --git a/public/images/ui/text_images/es-MX/summary/summary_moves_descriptions_title_es-MX.png b/public/images/ui/text_images/es-MX/summary/summary_moves_descriptions_title_es-MX.png new file mode 100644 index 00000000000..3a4e3c7c375 Binary files /dev/null and b/public/images/ui/text_images/es-MX/summary/summary_moves_descriptions_title_es-MX.png differ diff --git a/public/images/ui/text_images/es-MX/summary/summary_moves_effect_title_es-MX.png b/public/images/ui/text_images/es-MX/summary/summary_moves_effect_title_es-MX.png new file mode 100644 index 00000000000..cf8d1309848 Binary files /dev/null and b/public/images/ui/text_images/es-MX/summary/summary_moves_effect_title_es-MX.png differ diff --git a/public/images/ui/text_images/es-MX/summary/summary_moves_moves_title_es-MX.png b/public/images/ui/text_images/es-MX/summary/summary_moves_moves_title_es-MX.png new file mode 100644 index 00000000000..a601ae79e4f Binary files /dev/null and b/public/images/ui/text_images/es-MX/summary/summary_moves_moves_title_es-MX.png differ diff --git a/public/images/ui/text_images/es-MX/summary/summary_moves_overlay_pp_es-MX.png b/public/images/ui/text_images/es-MX/summary/summary_moves_overlay_pp_es-MX.png new file mode 100644 index 00000000000..a2bcd0bd021 Binary files /dev/null and b/public/images/ui/text_images/es-MX/summary/summary_moves_overlay_pp_es-MX.png differ diff --git a/public/images/ui/text_images/es-MX/summary/summary_profile_ability_es-MX.png b/public/images/ui/text_images/es-MX/summary/summary_profile_ability_es-MX.png new file mode 100644 index 00000000000..71bffe95cfe Binary files /dev/null and b/public/images/ui/text_images/es-MX/summary/summary_profile_ability_es-MX.png differ diff --git a/public/images/ui/text_images/es-MX/summary/summary_profile_memo_title_es-MX.png b/public/images/ui/text_images/es-MX/summary/summary_profile_memo_title_es-MX.png new file mode 100644 index 00000000000..b7ef7c91fc5 Binary files /dev/null and b/public/images/ui/text_images/es-MX/summary/summary_profile_memo_title_es-MX.png differ diff --git a/public/images/ui/text_images/es-MX/summary/summary_profile_passive_es-MX.png b/public/images/ui/text_images/es-MX/summary/summary_profile_passive_es-MX.png new file mode 100644 index 00000000000..a50e3cacf58 Binary files /dev/null and b/public/images/ui/text_images/es-MX/summary/summary_profile_passive_es-MX.png differ diff --git a/public/images/ui/text_images/es-MX/summary/summary_profile_profile_title_es-MX.png b/public/images/ui/text_images/es-MX/summary/summary_profile_profile_title_es-MX.png new file mode 100644 index 00000000000..a5ed0e3e169 Binary files /dev/null and b/public/images/ui/text_images/es-MX/summary/summary_profile_profile_title_es-MX.png differ diff --git a/public/images/ui/text_images/es-MX/summary/summary_stats_exp_title_es-MX.png b/public/images/ui/text_images/es-MX/summary/summary_stats_exp_title_es-MX.png new file mode 100644 index 00000000000..7c8a80f0627 Binary files /dev/null and b/public/images/ui/text_images/es-MX/summary/summary_stats_exp_title_es-MX.png differ diff --git a/public/images/ui/text_images/es-MX/summary/summary_stats_expbar_title_es-MX.png b/public/images/ui/text_images/es-MX/summary/summary_stats_expbar_title_es-MX.png new file mode 100644 index 00000000000..4889b64eca8 Binary files /dev/null and b/public/images/ui/text_images/es-MX/summary/summary_stats_expbar_title_es-MX.png differ diff --git a/public/images/ui/text_images/es-MX/summary/summary_stats_item_title_es-MX.png b/public/images/ui/text_images/es-MX/summary/summary_stats_item_title_es-MX.png new file mode 100644 index 00000000000..9236aaa1ff8 Binary files /dev/null and b/public/images/ui/text_images/es-MX/summary/summary_stats_item_title_es-MX.png differ diff --git a/public/images/ui/text_images/es-MX/summary/summary_stats_stats_title_es-MX.png b/public/images/ui/text_images/es-MX/summary/summary_stats_stats_title_es-MX.png new file mode 100644 index 00000000000..5b59c12984f Binary files /dev/null and b/public/images/ui/text_images/es-MX/summary/summary_stats_stats_title_es-MX.png differ diff --git a/public/images/ui/text_images/es-MX/summary/summary_tabs_1_es-MX.png b/public/images/ui/text_images/es-MX/summary/summary_tabs_1_es-MX.png new file mode 100644 index 00000000000..99f187c396f Binary files /dev/null and b/public/images/ui/text_images/es-MX/summary/summary_tabs_1_es-MX.png differ diff --git a/public/images/ui/text_images/es-MX/summary/summary_tabs_2_es-MX.png b/public/images/ui/text_images/es-MX/summary/summary_tabs_2_es-MX.png new file mode 100644 index 00000000000..c841de2c12c Binary files /dev/null and b/public/images/ui/text_images/es-MX/summary/summary_tabs_2_es-MX.png differ diff --git a/public/images/ui/text_images/es-MX/summary/summary_tabs_3_es-MX.png b/public/images/ui/text_images/es-MX/summary/summary_tabs_3_es-MX.png new file mode 100644 index 00000000000..805fec323dd Binary files /dev/null and b/public/images/ui/text_images/es-MX/summary/summary_tabs_3_es-MX.png differ diff --git a/public/images/ui/text_images/fr/battle_ui/overlay_exp_label_fr.png b/public/images/ui/text_images/fr/battle_ui/overlay_exp_label_fr.png new file mode 100644 index 00000000000..fde37213eff Binary files /dev/null and b/public/images/ui/text_images/fr/battle_ui/overlay_exp_label_fr.png differ diff --git a/public/images/ui/text_images/fr/battle_ui/overlay_hp_label_boss_fr.png b/public/images/ui/text_images/fr/battle_ui/overlay_hp_label_boss_fr.png new file mode 100644 index 00000000000..0bcec679e05 Binary files /dev/null and b/public/images/ui/text_images/fr/battle_ui/overlay_hp_label_boss_fr.png differ diff --git a/public/images/ui/text_images/fr/battle_ui/overlay_hp_label_fr.png b/public/images/ui/text_images/fr/battle_ui/overlay_hp_label_fr.png new file mode 100644 index 00000000000..e086339f047 Binary files /dev/null and b/public/images/ui/text_images/fr/battle_ui/overlay_hp_label_fr.png differ diff --git a/public/images/ui/text_images/fr/battle_ui/overlay_lv_fr.png b/public/images/ui/text_images/fr/battle_ui/overlay_lv_fr.png new file mode 100644 index 00000000000..9a9ccb6d02d Binary files /dev/null and b/public/images/ui/text_images/fr/battle_ui/overlay_lv_fr.png differ diff --git a/public/images/ui/text_images/fr/battle_ui/pbinfo_stat_fr.json b/public/images/ui/text_images/fr/battle_ui/pbinfo_stat_fr.json new file mode 100644 index 00000000000..1275fe16ec3 --- /dev/null +++ b/public/images/ui/text_images/fr/battle_ui/pbinfo_stat_fr.json @@ -0,0 +1,209 @@ +{ + "textures": [ + { + "image": "pbinfo_stat_fr.png", + "format": "RGBA8888", + "size": { + "w": 120, + "h": 9 + }, + "scale": 1, + "frames": [ + { + "filename": "SPATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 19, + "h": 9 + }, + "frame": { + "x": 0, + "y": 0, + "w": 19, + "h": 9 + } + }, + { + "filename": "SPDEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 19, + "h": 9 + }, + "frame": { + "x": 19, + "y": 0, + "w": 19, + "h": 9 + } + }, + { + "filename": "CRIT", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 17, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 17, + "h": 9 + }, + "frame": { + "x": 38, + "y": 0, + "w": 17, + "h": 9 + } + }, + { + "filename": "ACC", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 13, + "h": 9 + }, + "frame": { + "x": 55, + "y": 0, + "w": 13, + "h": 9 + } + }, + { + "filename": "ATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 13, + "h": 9 + }, + "frame": { + "x": 68, + "y": 0, + "w": 13, + "h": 9 + } + }, + { + "filename": "DEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 13, + "h": 9 + }, + "frame": { + "x": 81, + "y": 0, + "w": 13, + "h": 9 + } + }, + { + "filename": "EVA", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 13, + "h": 9 + }, + "frame": { + "x": 94, + "y": 0, + "w": 13, + "h": 9 + } + }, + { + "filename": "SPD", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 13, + "h": 9 + }, + "frame": { + "x": 107, + "y": 0, + "w": 13, + "h": 9 + } + }, + { + "filename": "HP", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 9, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 9, + "h": 9 + }, + "frame": { + "x": 120, + "y": 0, + "w": 9, + "h": 9 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:86fbd1b45d46271597a7d9de482aaa74:df702dd9d88db50369f1a096f82fd915:05882267d3999884e0491134e98b1b53$" + } +} diff --git a/public/images/ui/text_images/fr/battle_ui/pbinfo_stat_fr.png b/public/images/ui/text_images/fr/battle_ui/pbinfo_stat_fr.png new file mode 100644 index 00000000000..baea5c8d93c Binary files /dev/null and b/public/images/ui/text_images/fr/battle_ui/pbinfo_stat_fr.png differ diff --git a/public/images/ui/text_images/fr/party_ui/party_slot_overlay_hp_fr.png b/public/images/ui/text_images/fr/party_ui/party_slot_overlay_hp_fr.png new file mode 100644 index 00000000000..140c99eef68 Binary files /dev/null and b/public/images/ui/text_images/fr/party_ui/party_slot_overlay_hp_fr.png differ diff --git a/public/images/ui/text_images/fr/party_ui/party_slot_overlay_lv_fr.png b/public/images/ui/text_images/fr/party_ui/party_slot_overlay_lv_fr.png new file mode 100644 index 00000000000..ff489e33712 Binary files /dev/null and b/public/images/ui/text_images/fr/party_ui/party_slot_overlay_lv_fr.png differ diff --git a/public/images/ui/text_images/fr/summary/summary_dexnb_label_fr.png b/public/images/ui/text_images/fr/summary/summary_dexnb_label_fr.png new file mode 100644 index 00000000000..5477e3385a8 Binary files /dev/null and b/public/images/ui/text_images/fr/summary/summary_dexnb_label_fr.png differ diff --git a/public/images/ui/text_images/fr/summary/summary_dexnb_label_overlay_shiny_fr.png b/public/images/ui/text_images/fr/summary/summary_dexnb_label_overlay_shiny_fr.png new file mode 100644 index 00000000000..54f0c3799a0 Binary files /dev/null and b/public/images/ui/text_images/fr/summary/summary_dexnb_label_overlay_shiny_fr.png differ diff --git a/public/images/ui/text_images/fr/summary/summary_moves_descriptions_title_fr.png b/public/images/ui/text_images/fr/summary/summary_moves_descriptions_title_fr.png new file mode 100644 index 00000000000..e83e8cafbfc Binary files /dev/null and b/public/images/ui/text_images/fr/summary/summary_moves_descriptions_title_fr.png differ diff --git a/public/images/ui/text_images/fr/summary/summary_moves_effect_title_fr.png b/public/images/ui/text_images/fr/summary/summary_moves_effect_title_fr.png new file mode 100644 index 00000000000..49f4e11096a Binary files /dev/null and b/public/images/ui/text_images/fr/summary/summary_moves_effect_title_fr.png differ diff --git a/public/images/ui/text_images/fr/summary/summary_moves_moves_title_fr.png b/public/images/ui/text_images/fr/summary/summary_moves_moves_title_fr.png new file mode 100644 index 00000000000..1fd7d72c307 Binary files /dev/null and b/public/images/ui/text_images/fr/summary/summary_moves_moves_title_fr.png differ diff --git a/public/images/ui/text_images/fr/summary/summary_moves_overlay_pp_fr.png b/public/images/ui/text_images/fr/summary/summary_moves_overlay_pp_fr.png new file mode 100644 index 00000000000..8285fb09c45 Binary files /dev/null and b/public/images/ui/text_images/fr/summary/summary_moves_overlay_pp_fr.png differ diff --git a/public/images/ui/text_images/fr/summary/summary_profile_ability_fr.png b/public/images/ui/text_images/fr/summary/summary_profile_ability_fr.png new file mode 100644 index 00000000000..3354b40adfe Binary files /dev/null and b/public/images/ui/text_images/fr/summary/summary_profile_ability_fr.png differ diff --git a/public/images/ui/text_images/fr/summary/summary_profile_memo_title_fr.png b/public/images/ui/text_images/fr/summary/summary_profile_memo_title_fr.png new file mode 100644 index 00000000000..54c6beb4428 Binary files /dev/null and b/public/images/ui/text_images/fr/summary/summary_profile_memo_title_fr.png differ diff --git a/public/images/ui/text_images/fr/summary/summary_profile_passive_fr.png b/public/images/ui/text_images/fr/summary/summary_profile_passive_fr.png new file mode 100644 index 00000000000..f5d2c98a21c Binary files /dev/null and b/public/images/ui/text_images/fr/summary/summary_profile_passive_fr.png differ diff --git a/public/images/ui/text_images/fr/summary/summary_profile_profile_title_fr.png b/public/images/ui/text_images/fr/summary/summary_profile_profile_title_fr.png new file mode 100644 index 00000000000..bccba2d87df Binary files /dev/null and b/public/images/ui/text_images/fr/summary/summary_profile_profile_title_fr.png differ diff --git a/public/images/ui/text_images/fr/summary/summary_stats_exp_title_fr.png b/public/images/ui/text_images/fr/summary/summary_stats_exp_title_fr.png new file mode 100644 index 00000000000..32d41d44be4 Binary files /dev/null and b/public/images/ui/text_images/fr/summary/summary_stats_exp_title_fr.png differ diff --git a/public/images/ui/text_images/fr/summary/summary_stats_expbar_title_fr.png b/public/images/ui/text_images/fr/summary/summary_stats_expbar_title_fr.png new file mode 100644 index 00000000000..4889b64eca8 Binary files /dev/null and b/public/images/ui/text_images/fr/summary/summary_stats_expbar_title_fr.png differ diff --git a/public/images/ui/text_images/fr/summary/summary_stats_item_title_fr.png b/public/images/ui/text_images/fr/summary/summary_stats_item_title_fr.png new file mode 100644 index 00000000000..45c10e8c907 Binary files /dev/null and b/public/images/ui/text_images/fr/summary/summary_stats_item_title_fr.png differ diff --git a/public/images/ui/text_images/fr/summary/summary_stats_stats_title_fr.png b/public/images/ui/text_images/fr/summary/summary_stats_stats_title_fr.png new file mode 100644 index 00000000000..63fe6a694af Binary files /dev/null and b/public/images/ui/text_images/fr/summary/summary_stats_stats_title_fr.png differ diff --git a/public/images/ui/text_images/fr/summary/summary_tabs_1_fr.png b/public/images/ui/text_images/fr/summary/summary_tabs_1_fr.png new file mode 100644 index 00000000000..dd918e773e9 Binary files /dev/null and b/public/images/ui/text_images/fr/summary/summary_tabs_1_fr.png differ diff --git a/public/images/ui/text_images/fr/summary/summary_tabs_2_fr.png b/public/images/ui/text_images/fr/summary/summary_tabs_2_fr.png new file mode 100644 index 00000000000..6e53366bec3 Binary files /dev/null and b/public/images/ui/text_images/fr/summary/summary_tabs_2_fr.png differ diff --git a/public/images/ui/text_images/fr/summary/summary_tabs_3_fr.png b/public/images/ui/text_images/fr/summary/summary_tabs_3_fr.png new file mode 100644 index 00000000000..d4c353084a3 Binary files /dev/null and b/public/images/ui/text_images/fr/summary/summary_tabs_3_fr.png differ diff --git a/public/images/ui/text_images/it/battle_ui/overlay_exp_label_it.png b/public/images/ui/text_images/it/battle_ui/overlay_exp_label_it.png new file mode 100644 index 00000000000..6ad5855cc46 Binary files /dev/null and b/public/images/ui/text_images/it/battle_ui/overlay_exp_label_it.png differ diff --git a/public/images/ui/text_images/it/battle_ui/overlay_hp_label_boss_it.png b/public/images/ui/text_images/it/battle_ui/overlay_hp_label_boss_it.png new file mode 100644 index 00000000000..0bcec679e05 Binary files /dev/null and b/public/images/ui/text_images/it/battle_ui/overlay_hp_label_boss_it.png differ diff --git a/public/images/ui/text_images/it/battle_ui/overlay_hp_label_it.png b/public/images/ui/text_images/it/battle_ui/overlay_hp_label_it.png new file mode 100644 index 00000000000..7c7ccba752f Binary files /dev/null and b/public/images/ui/text_images/it/battle_ui/overlay_hp_label_it.png differ diff --git a/public/images/ui/text_images/it/battle_ui/overlay_lv_it.png b/public/images/ui/text_images/it/battle_ui/overlay_lv_it.png new file mode 100644 index 00000000000..987d806b93a Binary files /dev/null and b/public/images/ui/text_images/it/battle_ui/overlay_lv_it.png differ diff --git a/public/images/ui/text_images/it/battle_ui/pbinfo_stat_it.json b/public/images/ui/text_images/it/battle_ui/pbinfo_stat_it.json new file mode 100644 index 00000000000..111a88ba365 --- /dev/null +++ b/public/images/ui/text_images/it/battle_ui/pbinfo_stat_it.json @@ -0,0 +1,209 @@ +{ + "textures": [ + { + "image": "pbinfo_stat_it.png", + "format": "RGBA8888", + "size": { + "w": 120, + "h": 7 + }, + "scale": 1, + "frames": [ + { + "filename": "SPATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 7 + }, + "frame": { + "x": 0, + "y": 0, + "w": 19, + "h": 7 + } + }, + { + "filename": "SPDEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 7 + }, + "frame": { + "x": 19, + "y": 0, + "w": 19, + "h": 7 + } + }, + { + "filename": "CRIT", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 17, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 17, + "h": 7 + }, + "frame": { + "x": 38, + "y": 0, + "w": 17, + "h": 7 + } + }, + { + "filename": "ACC", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 55, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "ATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 68, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "DEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 81, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "EVA", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 94, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "SPD", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 107, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "HP", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 9, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 9, + "h": 7 + }, + "frame": { + "x": 120, + "y": 0, + "w": 9, + "h": 7 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:86fbd1b45d46271597a7d9de482aaa74:df702dd9d88db50369f1a096f82fd915:05882267d3999884e0491134e98b1b53$" + } +} diff --git a/public/images/ui/text_images/it/battle_ui/pbinfo_stat_it.png b/public/images/ui/text_images/it/battle_ui/pbinfo_stat_it.png new file mode 100644 index 00000000000..c2ac58da184 Binary files /dev/null and b/public/images/ui/text_images/it/battle_ui/pbinfo_stat_it.png differ diff --git a/public/images/ui/text_images/it/party_ui/party_slot_overlay_hp_it.png b/public/images/ui/text_images/it/party_ui/party_slot_overlay_hp_it.png new file mode 100644 index 00000000000..4bc95e4f95e Binary files /dev/null and b/public/images/ui/text_images/it/party_ui/party_slot_overlay_hp_it.png differ diff --git a/public/images/ui/text_images/it/party_ui/party_slot_overlay_lv_it.png b/public/images/ui/text_images/it/party_ui/party_slot_overlay_lv_it.png new file mode 100644 index 00000000000..31a2a31dd41 Binary files /dev/null and b/public/images/ui/text_images/it/party_ui/party_slot_overlay_lv_it.png differ diff --git a/public/images/ui/text_images/it/summary/summary_dexnb_label_it.png b/public/images/ui/text_images/it/summary/summary_dexnb_label_it.png new file mode 100644 index 00000000000..5477e3385a8 Binary files /dev/null and b/public/images/ui/text_images/it/summary/summary_dexnb_label_it.png differ diff --git a/public/images/ui/text_images/it/summary/summary_dexnb_label_overlay_shiny_it.png b/public/images/ui/text_images/it/summary/summary_dexnb_label_overlay_shiny_it.png new file mode 100644 index 00000000000..54f0c3799a0 Binary files /dev/null and b/public/images/ui/text_images/it/summary/summary_dexnb_label_overlay_shiny_it.png differ diff --git a/public/images/ui/text_images/it/summary/summary_moves_descriptions_title_it.png b/public/images/ui/text_images/it/summary/summary_moves_descriptions_title_it.png new file mode 100644 index 00000000000..e0bf21396e5 Binary files /dev/null and b/public/images/ui/text_images/it/summary/summary_moves_descriptions_title_it.png differ diff --git a/public/images/ui/text_images/it/summary/summary_moves_effect_title_it.png b/public/images/ui/text_images/it/summary/summary_moves_effect_title_it.png new file mode 100644 index 00000000000..99f9dfeb2c3 Binary files /dev/null and b/public/images/ui/text_images/it/summary/summary_moves_effect_title_it.png differ diff --git a/public/images/ui/text_images/it/summary/summary_moves_moves_title_it.png b/public/images/ui/text_images/it/summary/summary_moves_moves_title_it.png new file mode 100644 index 00000000000..e56e3f4b336 Binary files /dev/null and b/public/images/ui/text_images/it/summary/summary_moves_moves_title_it.png differ diff --git a/public/images/ui/text_images/it/summary/summary_moves_overlay_pp_it.png b/public/images/ui/text_images/it/summary/summary_moves_overlay_pp_it.png new file mode 100644 index 00000000000..a2bcd0bd021 Binary files /dev/null and b/public/images/ui/text_images/it/summary/summary_moves_overlay_pp_it.png differ diff --git a/public/images/ui/text_images/it/summary/summary_profile_ability_it.png b/public/images/ui/text_images/it/summary/summary_profile_ability_it.png new file mode 100644 index 00000000000..bb915da37ee Binary files /dev/null and b/public/images/ui/text_images/it/summary/summary_profile_ability_it.png differ diff --git a/public/images/ui/text_images/it/summary/summary_profile_memo_title_it.png b/public/images/ui/text_images/it/summary/summary_profile_memo_title_it.png new file mode 100644 index 00000000000..0c81cd56f06 Binary files /dev/null and b/public/images/ui/text_images/it/summary/summary_profile_memo_title_it.png differ diff --git a/public/images/ui/text_images/it/summary/summary_profile_passive_it.png b/public/images/ui/text_images/it/summary/summary_profile_passive_it.png new file mode 100644 index 00000000000..a072b663d25 Binary files /dev/null and b/public/images/ui/text_images/it/summary/summary_profile_passive_it.png differ diff --git a/public/images/ui/text_images/it/summary/summary_profile_profile_title_it.png b/public/images/ui/text_images/it/summary/summary_profile_profile_title_it.png new file mode 100644 index 00000000000..169b0a7b8e7 Binary files /dev/null and b/public/images/ui/text_images/it/summary/summary_profile_profile_title_it.png differ diff --git a/public/images/ui/text_images/it/summary/summary_stats_exp_title_it.png b/public/images/ui/text_images/it/summary/summary_stats_exp_title_it.png new file mode 100644 index 00000000000..a3a1aa4c402 Binary files /dev/null and b/public/images/ui/text_images/it/summary/summary_stats_exp_title_it.png differ diff --git a/public/images/ui/text_images/it/summary/summary_stats_expbar_title_it.png b/public/images/ui/text_images/it/summary/summary_stats_expbar_title_it.png new file mode 100644 index 00000000000..d6cd930c1c2 Binary files /dev/null and b/public/images/ui/text_images/it/summary/summary_stats_expbar_title_it.png differ diff --git a/public/images/ui/text_images/it/summary/summary_stats_item_title_it.png b/public/images/ui/text_images/it/summary/summary_stats_item_title_it.png new file mode 100644 index 00000000000..a93695a48c8 Binary files /dev/null and b/public/images/ui/text_images/it/summary/summary_stats_item_title_it.png differ diff --git a/public/images/ui/text_images/it/summary/summary_stats_stats_title_it.png b/public/images/ui/text_images/it/summary/summary_stats_stats_title_it.png new file mode 100644 index 00000000000..998db7fc7e3 Binary files /dev/null and b/public/images/ui/text_images/it/summary/summary_stats_stats_title_it.png differ diff --git a/public/images/ui/text_images/it/summary/summary_tabs_1_it.png b/public/images/ui/text_images/it/summary/summary_tabs_1_it.png new file mode 100644 index 00000000000..933a381dd50 Binary files /dev/null and b/public/images/ui/text_images/it/summary/summary_tabs_1_it.png differ diff --git a/public/images/ui/text_images/it/summary/summary_tabs_2_it.png b/public/images/ui/text_images/it/summary/summary_tabs_2_it.png new file mode 100644 index 00000000000..07c73fbdb90 Binary files /dev/null and b/public/images/ui/text_images/it/summary/summary_tabs_2_it.png differ diff --git a/public/images/ui/text_images/it/summary/summary_tabs_3_it.png b/public/images/ui/text_images/it/summary/summary_tabs_3_it.png new file mode 100644 index 00000000000..57e8b176be1 Binary files /dev/null and b/public/images/ui/text_images/it/summary/summary_tabs_3_it.png differ diff --git a/public/images/ui/text_images/ja/battle_ui/overlay_exp_label_ja.png b/public/images/ui/text_images/ja/battle_ui/overlay_exp_label_ja.png new file mode 100644 index 00000000000..fde37213eff Binary files /dev/null and b/public/images/ui/text_images/ja/battle_ui/overlay_exp_label_ja.png differ diff --git a/public/images/ui/text_images/ja/battle_ui/overlay_hp_label_boss_ja.png b/public/images/ui/text_images/ja/battle_ui/overlay_hp_label_boss_ja.png new file mode 100644 index 00000000000..0bcec679e05 Binary files /dev/null and b/public/images/ui/text_images/ja/battle_ui/overlay_hp_label_boss_ja.png differ diff --git a/public/images/ui/text_images/ja/battle_ui/overlay_hp_label_ja.png b/public/images/ui/text_images/ja/battle_ui/overlay_hp_label_ja.png new file mode 100644 index 00000000000..38a34761381 Binary files /dev/null and b/public/images/ui/text_images/ja/battle_ui/overlay_hp_label_ja.png differ diff --git a/public/images/ui/text_images/ja/battle_ui/overlay_lv_ja.png b/public/images/ui/text_images/ja/battle_ui/overlay_lv_ja.png new file mode 100644 index 00000000000..9ad4312d561 Binary files /dev/null and b/public/images/ui/text_images/ja/battle_ui/overlay_lv_ja.png differ diff --git a/public/images/ui/text_images/ja/battle_ui/pbinfo_stat_ja.json b/public/images/ui/text_images/ja/battle_ui/pbinfo_stat_ja.json new file mode 100644 index 00000000000..d8de5c788ef --- /dev/null +++ b/public/images/ui/text_images/ja/battle_ui/pbinfo_stat_ja.json @@ -0,0 +1,209 @@ +{ + "textures": [ + { + "image": "pbinfo_stat_ja.png", + "format": "RGBA8888", + "size": { + "w": 120, + "h": 7 + }, + "scale": 1, + "frames": [ + { + "filename": "SPATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 7 + }, + "frame": { + "x": 0, + "y": 0, + "w": 19, + "h": 7 + } + }, + { + "filename": "SPDEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 7 + }, + "frame": { + "x": 19, + "y": 0, + "w": 19, + "h": 7 + } + }, + { + "filename": "CRIT", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 17, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 17, + "h": 7 + }, + "frame": { + "x": 38, + "y": 0, + "w": 17, + "h": 7 + } + }, + { + "filename": "ACC", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 55, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "ATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 68, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "DEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 81, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "EVA", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 94, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "SPD", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 107, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "HP", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 9, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 9, + "h": 7 + }, + "frame": { + "x": 120, + "y": 0, + "w": 9, + "h": 7 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:86fbd1b45d46271597a7d9de482aaa74:df702dd9d88db50369f1a096f82fd915:05882267d3999884e0491134e98b1b53$" + } +} diff --git a/public/images/ui/text_images/ja/battle_ui/pbinfo_stat_ja.png b/public/images/ui/text_images/ja/battle_ui/pbinfo_stat_ja.png new file mode 100644 index 00000000000..9656c5f04b9 Binary files /dev/null and b/public/images/ui/text_images/ja/battle_ui/pbinfo_stat_ja.png differ diff --git a/public/images/ui/text_images/ja/party_ui/party_slot_overlay_hp_ja.png b/public/images/ui/text_images/ja/party_ui/party_slot_overlay_hp_ja.png new file mode 100644 index 00000000000..9be90b5c6bb Binary files /dev/null and b/public/images/ui/text_images/ja/party_ui/party_slot_overlay_hp_ja.png differ diff --git a/public/images/ui/text_images/ja/party_ui/party_slot_overlay_lv_ja.png b/public/images/ui/text_images/ja/party_ui/party_slot_overlay_lv_ja.png new file mode 100644 index 00000000000..122d3f7151c Binary files /dev/null and b/public/images/ui/text_images/ja/party_ui/party_slot_overlay_lv_ja.png differ diff --git a/public/images/ui/text_images/ja/summary/summary_dexnb_label_ja.png b/public/images/ui/text_images/ja/summary/summary_dexnb_label_ja.png new file mode 100644 index 00000000000..bf568c486aa Binary files /dev/null and b/public/images/ui/text_images/ja/summary/summary_dexnb_label_ja.png differ diff --git a/public/images/ui/text_images/ja/summary/summary_dexnb_label_overlay_shiny_ja.png b/public/images/ui/text_images/ja/summary/summary_dexnb_label_overlay_shiny_ja.png new file mode 100644 index 00000000000..f35e327c29a Binary files /dev/null and b/public/images/ui/text_images/ja/summary/summary_dexnb_label_overlay_shiny_ja.png differ diff --git a/public/images/ui/text_images/ja/summary/summary_moves_descriptions_title_ja.png b/public/images/ui/text_images/ja/summary/summary_moves_descriptions_title_ja.png new file mode 100644 index 00000000000..d844e844244 Binary files /dev/null and b/public/images/ui/text_images/ja/summary/summary_moves_descriptions_title_ja.png differ diff --git a/public/images/ui/text_images/ja/summary/summary_moves_effect_title_ja.png b/public/images/ui/text_images/ja/summary/summary_moves_effect_title_ja.png new file mode 100644 index 00000000000..a75452f1299 Binary files /dev/null and b/public/images/ui/text_images/ja/summary/summary_moves_effect_title_ja.png differ diff --git a/public/images/ui/text_images/ja/summary/summary_moves_moves_title_ja.png b/public/images/ui/text_images/ja/summary/summary_moves_moves_title_ja.png new file mode 100644 index 00000000000..6492c3ecf7c Binary files /dev/null and b/public/images/ui/text_images/ja/summary/summary_moves_moves_title_ja.png differ diff --git a/public/images/ui/text_images/ja/summary/summary_moves_overlay_pp_ja.png b/public/images/ui/text_images/ja/summary/summary_moves_overlay_pp_ja.png new file mode 100644 index 00000000000..a2bcd0bd021 Binary files /dev/null and b/public/images/ui/text_images/ja/summary/summary_moves_overlay_pp_ja.png differ diff --git a/public/images/ui/text_images/ja/summary/summary_profile_ability_ja.png b/public/images/ui/text_images/ja/summary/summary_profile_ability_ja.png new file mode 100644 index 00000000000..6c82a863a69 Binary files /dev/null and b/public/images/ui/text_images/ja/summary/summary_profile_ability_ja.png differ diff --git a/public/images/ui/text_images/ja/summary/summary_profile_memo_title_ja.png b/public/images/ui/text_images/ja/summary/summary_profile_memo_title_ja.png new file mode 100644 index 00000000000..3f5a4536817 Binary files /dev/null and b/public/images/ui/text_images/ja/summary/summary_profile_memo_title_ja.png differ diff --git a/public/images/ui/text_images/ja/summary/summary_profile_passive_ja.png b/public/images/ui/text_images/ja/summary/summary_profile_passive_ja.png new file mode 100644 index 00000000000..3bfed88c7da Binary files /dev/null and b/public/images/ui/text_images/ja/summary/summary_profile_passive_ja.png differ diff --git a/public/images/ui/text_images/ja/summary/summary_profile_profile_title_ja.png b/public/images/ui/text_images/ja/summary/summary_profile_profile_title_ja.png new file mode 100644 index 00000000000..a05cba49247 Binary files /dev/null and b/public/images/ui/text_images/ja/summary/summary_profile_profile_title_ja.png differ diff --git a/public/images/ui/text_images/ja/summary/summary_stats_exp_title_ja.png b/public/images/ui/text_images/ja/summary/summary_stats_exp_title_ja.png new file mode 100644 index 00000000000..0bc237a7e6b Binary files /dev/null and b/public/images/ui/text_images/ja/summary/summary_stats_exp_title_ja.png differ diff --git a/public/images/ui/text_images/ja/summary/summary_stats_expbar_title_ja.png b/public/images/ui/text_images/ja/summary/summary_stats_expbar_title_ja.png new file mode 100644 index 00000000000..4889b64eca8 Binary files /dev/null and b/public/images/ui/text_images/ja/summary/summary_stats_expbar_title_ja.png differ diff --git a/public/images/ui/text_images/ja/summary/summary_stats_item_title_ja.png b/public/images/ui/text_images/ja/summary/summary_stats_item_title_ja.png new file mode 100644 index 00000000000..114b4d7fd3f Binary files /dev/null and b/public/images/ui/text_images/ja/summary/summary_stats_item_title_ja.png differ diff --git a/public/images/ui/text_images/ja/summary/summary_stats_stats_title_ja.png b/public/images/ui/text_images/ja/summary/summary_stats_stats_title_ja.png new file mode 100644 index 00000000000..c9f2e28fb07 Binary files /dev/null and b/public/images/ui/text_images/ja/summary/summary_stats_stats_title_ja.png differ diff --git a/public/images/ui/text_images/ja/summary/summary_tabs_1_ja.png b/public/images/ui/text_images/ja/summary/summary_tabs_1_ja.png new file mode 100644 index 00000000000..90f454dae75 Binary files /dev/null and b/public/images/ui/text_images/ja/summary/summary_tabs_1_ja.png differ diff --git a/public/images/ui/text_images/ja/summary/summary_tabs_2_ja.png b/public/images/ui/text_images/ja/summary/summary_tabs_2_ja.png new file mode 100644 index 00000000000..006c33f23b1 Binary files /dev/null and b/public/images/ui/text_images/ja/summary/summary_tabs_2_ja.png differ diff --git a/public/images/ui/text_images/ja/summary/summary_tabs_3_ja.png b/public/images/ui/text_images/ja/summary/summary_tabs_3_ja.png new file mode 100644 index 00000000000..3306d0aba62 Binary files /dev/null and b/public/images/ui/text_images/ja/summary/summary_tabs_3_ja.png differ diff --git a/public/images/ui/text_images/ko/battle_ui/overlay_exp_label_ko.png b/public/images/ui/text_images/ko/battle_ui/overlay_exp_label_ko.png new file mode 100644 index 00000000000..fde37213eff Binary files /dev/null and b/public/images/ui/text_images/ko/battle_ui/overlay_exp_label_ko.png differ diff --git a/public/images/ui/text_images/ko/battle_ui/overlay_hp_label_boss_ko.png b/public/images/ui/text_images/ko/battle_ui/overlay_hp_label_boss_ko.png new file mode 100644 index 00000000000..0bcec679e05 Binary files /dev/null and b/public/images/ui/text_images/ko/battle_ui/overlay_hp_label_boss_ko.png differ diff --git a/public/images/ui/text_images/ko/battle_ui/overlay_hp_label_ko.png b/public/images/ui/text_images/ko/battle_ui/overlay_hp_label_ko.png new file mode 100644 index 00000000000..38a34761381 Binary files /dev/null and b/public/images/ui/text_images/ko/battle_ui/overlay_hp_label_ko.png differ diff --git a/public/images/ui/text_images/ko/battle_ui/overlay_lv_ko.png b/public/images/ui/text_images/ko/battle_ui/overlay_lv_ko.png new file mode 100644 index 00000000000..9ad4312d561 Binary files /dev/null and b/public/images/ui/text_images/ko/battle_ui/overlay_lv_ko.png differ diff --git a/public/images/ui/text_images/ko/battle_ui/pbinfo_stat_ko.json b/public/images/ui/text_images/ko/battle_ui/pbinfo_stat_ko.json new file mode 100644 index 00000000000..a1d660dfca3 --- /dev/null +++ b/public/images/ui/text_images/ko/battle_ui/pbinfo_stat_ko.json @@ -0,0 +1,209 @@ +{ + "textures": [ + { + "image": "pbinfo_stat_ko.png", + "format": "RGBA8888", + "size": { + "w": 120, + "h": 7 + }, + "scale": 1, + "frames": [ + { + "filename": "SPATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 7 + }, + "frame": { + "x": 0, + "y": 0, + "w": 19, + "h": 7 + } + }, + { + "filename": "SPDEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 7 + }, + "frame": { + "x": 19, + "y": 0, + "w": 19, + "h": 7 + } + }, + { + "filename": "CRIT", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 17, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 17, + "h": 7 + }, + "frame": { + "x": 38, + "y": 0, + "w": 17, + "h": 7 + } + }, + { + "filename": "ACC", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 55, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "ATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 68, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "DEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 81, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "EVA", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 94, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "SPD", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 107, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "HP", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 9, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 9, + "h": 7 + }, + "frame": { + "x": 120, + "y": 0, + "w": 9, + "h": 7 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:86fbd1b45d46271597a7d9de482aaa74:df702dd9d88db50369f1a096f82fd915:05882267d3999884e0491134e98b1b53$" + } +} diff --git a/public/images/ui/text_images/ko/battle_ui/pbinfo_stat_ko.png b/public/images/ui/text_images/ko/battle_ui/pbinfo_stat_ko.png new file mode 100644 index 00000000000..9656c5f04b9 Binary files /dev/null and b/public/images/ui/text_images/ko/battle_ui/pbinfo_stat_ko.png differ diff --git a/public/images/ui/text_images/ko/party_ui/party_slot_overlay_hp_ko.png b/public/images/ui/text_images/ko/party_ui/party_slot_overlay_hp_ko.png new file mode 100644 index 00000000000..9be90b5c6bb Binary files /dev/null and b/public/images/ui/text_images/ko/party_ui/party_slot_overlay_hp_ko.png differ diff --git a/public/images/ui/text_images/ko/party_ui/party_slot_overlay_lv_ko.png b/public/images/ui/text_images/ko/party_ui/party_slot_overlay_lv_ko.png new file mode 100644 index 00000000000..122d3f7151c Binary files /dev/null and b/public/images/ui/text_images/ko/party_ui/party_slot_overlay_lv_ko.png differ diff --git a/public/images/ui/text_images/ko/summary/summary_dexnb_label_ko.png b/public/images/ui/text_images/ko/summary/summary_dexnb_label_ko.png new file mode 100644 index 00000000000..bf568c486aa Binary files /dev/null and b/public/images/ui/text_images/ko/summary/summary_dexnb_label_ko.png differ diff --git a/public/images/ui/text_images/ko/summary/summary_dexnb_label_overlay_shiny_ko.png b/public/images/ui/text_images/ko/summary/summary_dexnb_label_overlay_shiny_ko.png new file mode 100644 index 00000000000..f35e327c29a Binary files /dev/null and b/public/images/ui/text_images/ko/summary/summary_dexnb_label_overlay_shiny_ko.png differ diff --git a/public/images/ui/text_images/ko/summary/summary_moves_descriptions_title_ko.png b/public/images/ui/text_images/ko/summary/summary_moves_descriptions_title_ko.png new file mode 100644 index 00000000000..350bd607aed Binary files /dev/null and b/public/images/ui/text_images/ko/summary/summary_moves_descriptions_title_ko.png differ diff --git a/public/images/ui/text_images/ko/summary/summary_moves_effect_title_ko.png b/public/images/ui/text_images/ko/summary/summary_moves_effect_title_ko.png new file mode 100644 index 00000000000..f90ac18fc4e Binary files /dev/null and b/public/images/ui/text_images/ko/summary/summary_moves_effect_title_ko.png differ diff --git a/public/images/ui/text_images/ko/summary/summary_moves_moves_title_ko.png b/public/images/ui/text_images/ko/summary/summary_moves_moves_title_ko.png new file mode 100644 index 00000000000..d020d8a77cb Binary files /dev/null and b/public/images/ui/text_images/ko/summary/summary_moves_moves_title_ko.png differ diff --git a/public/images/ui/text_images/ko/summary/summary_moves_overlay_pp_ko.png b/public/images/ui/text_images/ko/summary/summary_moves_overlay_pp_ko.png new file mode 100644 index 00000000000..a2bcd0bd021 Binary files /dev/null and b/public/images/ui/text_images/ko/summary/summary_moves_overlay_pp_ko.png differ diff --git a/public/images/ui/text_images/ko/summary/summary_profile_ability_ko.png b/public/images/ui/text_images/ko/summary/summary_profile_ability_ko.png new file mode 100644 index 00000000000..cdeafaf486e Binary files /dev/null and b/public/images/ui/text_images/ko/summary/summary_profile_ability_ko.png differ diff --git a/public/images/ui/text_images/ko/summary/summary_profile_memo_title_ko.png b/public/images/ui/text_images/ko/summary/summary_profile_memo_title_ko.png new file mode 100644 index 00000000000..7af960fe1df Binary files /dev/null and b/public/images/ui/text_images/ko/summary/summary_profile_memo_title_ko.png differ diff --git a/public/images/ui/text_images/ko/summary/summary_profile_passive_ko.png b/public/images/ui/text_images/ko/summary/summary_profile_passive_ko.png new file mode 100644 index 00000000000..34a13ffe836 Binary files /dev/null and b/public/images/ui/text_images/ko/summary/summary_profile_passive_ko.png differ diff --git a/public/images/ui/text_images/ko/summary/summary_profile_profile_title_ko.png b/public/images/ui/text_images/ko/summary/summary_profile_profile_title_ko.png new file mode 100644 index 00000000000..deb57b96715 Binary files /dev/null and b/public/images/ui/text_images/ko/summary/summary_profile_profile_title_ko.png differ diff --git a/public/images/ui/text_images/ko/summary/summary_stats_exp_title_ko.png b/public/images/ui/text_images/ko/summary/summary_stats_exp_title_ko.png new file mode 100644 index 00000000000..af0cb3afab8 Binary files /dev/null and b/public/images/ui/text_images/ko/summary/summary_stats_exp_title_ko.png differ diff --git a/public/images/ui/text_images/ko/summary/summary_stats_expbar_title_ko.png b/public/images/ui/text_images/ko/summary/summary_stats_expbar_title_ko.png new file mode 100644 index 00000000000..4889b64eca8 Binary files /dev/null and b/public/images/ui/text_images/ko/summary/summary_stats_expbar_title_ko.png differ diff --git a/public/images/ui/text_images/ko/summary/summary_stats_item_title_ko.png b/public/images/ui/text_images/ko/summary/summary_stats_item_title_ko.png new file mode 100644 index 00000000000..6be5909e5f0 Binary files /dev/null and b/public/images/ui/text_images/ko/summary/summary_stats_item_title_ko.png differ diff --git a/public/images/ui/text_images/ko/summary/summary_stats_stats_title_ko.png b/public/images/ui/text_images/ko/summary/summary_stats_stats_title_ko.png new file mode 100644 index 00000000000..371c2be4976 Binary files /dev/null and b/public/images/ui/text_images/ko/summary/summary_stats_stats_title_ko.png differ diff --git a/public/images/ui/text_images/ko/summary/summary_tabs_1_ko.png b/public/images/ui/text_images/ko/summary/summary_tabs_1_ko.png new file mode 100644 index 00000000000..487d4a628ca Binary files /dev/null and b/public/images/ui/text_images/ko/summary/summary_tabs_1_ko.png differ diff --git a/public/images/ui/text_images/ko/summary/summary_tabs_2_ko.png b/public/images/ui/text_images/ko/summary/summary_tabs_2_ko.png new file mode 100644 index 00000000000..304127ea2ef Binary files /dev/null and b/public/images/ui/text_images/ko/summary/summary_tabs_2_ko.png differ diff --git a/public/images/ui/text_images/ko/summary/summary_tabs_3_ko.png b/public/images/ui/text_images/ko/summary/summary_tabs_3_ko.png new file mode 100644 index 00000000000..832acf4d5ba Binary files /dev/null and b/public/images/ui/text_images/ko/summary/summary_tabs_3_ko.png differ diff --git a/public/images/ui/text_images/pt-BR/battle_ui/overlay_exp_label_pt-BR.png b/public/images/ui/text_images/pt-BR/battle_ui/overlay_exp_label_pt-BR.png new file mode 100644 index 00000000000..fde37213eff Binary files /dev/null and b/public/images/ui/text_images/pt-BR/battle_ui/overlay_exp_label_pt-BR.png differ diff --git a/public/images/ui/text_images/pt-BR/battle_ui/overlay_hp_label_boss_pt-BR.png b/public/images/ui/text_images/pt-BR/battle_ui/overlay_hp_label_boss_pt-BR.png new file mode 100644 index 00000000000..0bcec679e05 Binary files /dev/null and b/public/images/ui/text_images/pt-BR/battle_ui/overlay_hp_label_boss_pt-BR.png differ diff --git a/public/images/ui/text_images/pt-BR/battle_ui/overlay_hp_label_pt-BR.png b/public/images/ui/text_images/pt-BR/battle_ui/overlay_hp_label_pt-BR.png new file mode 100644 index 00000000000..7c7ccba752f Binary files /dev/null and b/public/images/ui/text_images/pt-BR/battle_ui/overlay_hp_label_pt-BR.png differ diff --git a/public/images/ui/text_images/pt-BR/battle_ui/overlay_lv_pt-BR.png b/public/images/ui/text_images/pt-BR/battle_ui/overlay_lv_pt-BR.png new file mode 100644 index 00000000000..869a1ee0051 Binary files /dev/null and b/public/images/ui/text_images/pt-BR/battle_ui/overlay_lv_pt-BR.png differ diff --git a/public/images/ui/text_images/pt-BR/battle_ui/pbinfo_stat_pt-BR.json b/public/images/ui/text_images/pt-BR/battle_ui/pbinfo_stat_pt-BR.json new file mode 100644 index 00000000000..ca97288795e --- /dev/null +++ b/public/images/ui/text_images/pt-BR/battle_ui/pbinfo_stat_pt-BR.json @@ -0,0 +1,209 @@ +{ + "textures": [ + { + "image": "pbinfo_stat_pt-BR.png", + "format": "RGBA8888", + "size": { + "w": 120, + "h": 9 + }, + "scale": 1, + "frames": [ + { + "filename": "SPATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 19, + "h": 9 + }, + "frame": { + "x": 0, + "y": 0, + "w": 19, + "h": 9 + } + }, + { + "filename": "SPDEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 19, + "h": 9 + }, + "frame": { + "x": 19, + "y": 0, + "w": 19, + "h": 9 + } + }, + { + "filename": "CRIT", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 17, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 17, + "h": 9 + }, + "frame": { + "x": 38, + "y": 0, + "w": 17, + "h": 9 + } + }, + { + "filename": "ACC", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 13, + "h": 9 + }, + "frame": { + "x": 55, + "y": 0, + "w": 13, + "h": 9 + } + }, + { + "filename": "ATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 13, + "h": 9 + }, + "frame": { + "x": 68, + "y": 0, + "w": 13, + "h": 9 + } + }, + { + "filename": "DEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 13, + "h": 9 + }, + "frame": { + "x": 81, + "y": 0, + "w": 13, + "h": 9 + } + }, + { + "filename": "EVA", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 13, + "h": 9 + }, + "frame": { + "x": 94, + "y": 0, + "w": 13, + "h": 9 + } + }, + { + "filename": "SPD", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 13, + "h": 9 + }, + "frame": { + "x": 107, + "y": 0, + "w": 13, + "h": 9 + } + }, + { + "filename": "HP", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 9, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": -1, + "w": 9, + "h": 9 + }, + "frame": { + "x": 120, + "y": 0, + "w": 9, + "h": 9 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:86fbd1b45d46271597a7d9de482aaa74:df702dd9d88db50369f1a096f82fd915:05882267d3999884e0491134e98b1b53$" + } +} diff --git a/public/images/ui/text_images/pt-BR/battle_ui/pbinfo_stat_pt-BR.png b/public/images/ui/text_images/pt-BR/battle_ui/pbinfo_stat_pt-BR.png new file mode 100644 index 00000000000..c20f4441983 Binary files /dev/null and b/public/images/ui/text_images/pt-BR/battle_ui/pbinfo_stat_pt-BR.png differ diff --git a/public/images/ui/text_images/pt-BR/party_ui/party_slot_overlay_hp_pt-BR.png b/public/images/ui/text_images/pt-BR/party_ui/party_slot_overlay_hp_pt-BR.png new file mode 100644 index 00000000000..4bc95e4f95e Binary files /dev/null and b/public/images/ui/text_images/pt-BR/party_ui/party_slot_overlay_hp_pt-BR.png differ diff --git a/public/images/ui/text_images/pt-BR/party_ui/party_slot_overlay_lv_pt-BR.png b/public/images/ui/text_images/pt-BR/party_ui/party_slot_overlay_lv_pt-BR.png new file mode 100644 index 00000000000..c5971de4fd0 Binary files /dev/null and b/public/images/ui/text_images/pt-BR/party_ui/party_slot_overlay_lv_pt-BR.png differ diff --git a/public/images/ui/text_images/pt-BR/summary/summary_dexnb_label_overlay_shiny_pt-BR.png b/public/images/ui/text_images/pt-BR/summary/summary_dexnb_label_overlay_shiny_pt-BR.png new file mode 100644 index 00000000000..54f0c3799a0 Binary files /dev/null and b/public/images/ui/text_images/pt-BR/summary/summary_dexnb_label_overlay_shiny_pt-BR.png differ diff --git a/public/images/ui/text_images/pt-BR/summary/summary_dexnb_label_pt-BR.png b/public/images/ui/text_images/pt-BR/summary/summary_dexnb_label_pt-BR.png new file mode 100644 index 00000000000..5477e3385a8 Binary files /dev/null and b/public/images/ui/text_images/pt-BR/summary/summary_dexnb_label_pt-BR.png differ diff --git a/public/images/ui/text_images/pt-BR/summary/summary_moves_descriptions_title_pt-BR.png b/public/images/ui/text_images/pt-BR/summary/summary_moves_descriptions_title_pt-BR.png new file mode 100644 index 00000000000..8d888143663 Binary files /dev/null and b/public/images/ui/text_images/pt-BR/summary/summary_moves_descriptions_title_pt-BR.png differ diff --git a/public/images/ui/text_images/pt-BR/summary/summary_moves_effect_title_pt-BR.png b/public/images/ui/text_images/pt-BR/summary/summary_moves_effect_title_pt-BR.png new file mode 100644 index 00000000000..83190955f2c Binary files /dev/null and b/public/images/ui/text_images/pt-BR/summary/summary_moves_effect_title_pt-BR.png differ diff --git a/public/images/ui/text_images/pt-BR/summary/summary_moves_moves_title_pt-BR.png b/public/images/ui/text_images/pt-BR/summary/summary_moves_moves_title_pt-BR.png new file mode 100644 index 00000000000..0a2d1657750 Binary files /dev/null and b/public/images/ui/text_images/pt-BR/summary/summary_moves_moves_title_pt-BR.png differ diff --git a/public/images/ui/text_images/pt-BR/summary/summary_moves_overlay_pp_pt-BR.png b/public/images/ui/text_images/pt-BR/summary/summary_moves_overlay_pp_pt-BR.png new file mode 100644 index 00000000000..a2bcd0bd021 Binary files /dev/null and b/public/images/ui/text_images/pt-BR/summary/summary_moves_overlay_pp_pt-BR.png differ diff --git a/public/images/ui/text_images/pt-BR/summary/summary_profile_ability_pt-BR.png b/public/images/ui/text_images/pt-BR/summary/summary_profile_ability_pt-BR.png new file mode 100644 index 00000000000..28fbb5a8be9 Binary files /dev/null and b/public/images/ui/text_images/pt-BR/summary/summary_profile_ability_pt-BR.png differ diff --git a/public/images/ui/text_images/pt-BR/summary/summary_profile_memo_title_pt-BR.png b/public/images/ui/text_images/pt-BR/summary/summary_profile_memo_title_pt-BR.png new file mode 100644 index 00000000000..b7ef7c91fc5 Binary files /dev/null and b/public/images/ui/text_images/pt-BR/summary/summary_profile_memo_title_pt-BR.png differ diff --git a/public/images/ui/text_images/pt-BR/summary/summary_profile_passive_pt-BR.png b/public/images/ui/text_images/pt-BR/summary/summary_profile_passive_pt-BR.png new file mode 100644 index 00000000000..11616a74287 Binary files /dev/null and b/public/images/ui/text_images/pt-BR/summary/summary_profile_passive_pt-BR.png differ diff --git a/public/images/ui/text_images/pt-BR/summary/summary_profile_profile_title_pt-BR.png b/public/images/ui/text_images/pt-BR/summary/summary_profile_profile_title_pt-BR.png new file mode 100644 index 00000000000..a5ed0e3e169 Binary files /dev/null and b/public/images/ui/text_images/pt-BR/summary/summary_profile_profile_title_pt-BR.png differ diff --git a/public/images/ui/text_images/pt-BR/summary/summary_stats_exp_title_pt-BR.png b/public/images/ui/text_images/pt-BR/summary/summary_stats_exp_title_pt-BR.png new file mode 100644 index 00000000000..d66fa829be1 Binary files /dev/null and b/public/images/ui/text_images/pt-BR/summary/summary_stats_exp_title_pt-BR.png differ diff --git a/public/images/ui/text_images/pt-BR/summary/summary_stats_expbar_title_pt-BR.png b/public/images/ui/text_images/pt-BR/summary/summary_stats_expbar_title_pt-BR.png new file mode 100644 index 00000000000..4889b64eca8 Binary files /dev/null and b/public/images/ui/text_images/pt-BR/summary/summary_stats_expbar_title_pt-BR.png differ diff --git a/public/images/ui/text_images/pt-BR/summary/summary_stats_item_title_pt-BR.png b/public/images/ui/text_images/pt-BR/summary/summary_stats_item_title_pt-BR.png new file mode 100644 index 00000000000..b9ea9400a64 Binary files /dev/null and b/public/images/ui/text_images/pt-BR/summary/summary_stats_item_title_pt-BR.png differ diff --git a/public/images/ui/text_images/pt-BR/summary/summary_stats_stats_title_pt-BR.png b/public/images/ui/text_images/pt-BR/summary/summary_stats_stats_title_pt-BR.png new file mode 100644 index 00000000000..bc9dffc2887 Binary files /dev/null and b/public/images/ui/text_images/pt-BR/summary/summary_stats_stats_title_pt-BR.png differ diff --git a/public/images/ui/text_images/pt-BR/summary/summary_tabs_1_pt-BR.png b/public/images/ui/text_images/pt-BR/summary/summary_tabs_1_pt-BR.png new file mode 100644 index 00000000000..888e8042051 Binary files /dev/null and b/public/images/ui/text_images/pt-BR/summary/summary_tabs_1_pt-BR.png differ diff --git a/public/images/ui/text_images/pt-BR/summary/summary_tabs_2_pt-BR.png b/public/images/ui/text_images/pt-BR/summary/summary_tabs_2_pt-BR.png new file mode 100644 index 00000000000..29cad435f2d Binary files /dev/null and b/public/images/ui/text_images/pt-BR/summary/summary_tabs_2_pt-BR.png differ diff --git a/public/images/ui/text_images/pt-BR/summary/summary_tabs_3_pt-BR.png b/public/images/ui/text_images/pt-BR/summary/summary_tabs_3_pt-BR.png new file mode 100644 index 00000000000..f4eebe1eb11 Binary files /dev/null and b/public/images/ui/text_images/pt-BR/summary/summary_tabs_3_pt-BR.png differ diff --git a/public/images/ui/text_images/ro/battle_ui/overlay_exp_label_ro.png b/public/images/ui/text_images/ro/battle_ui/overlay_exp_label_ro.png new file mode 100644 index 00000000000..fde37213eff Binary files /dev/null and b/public/images/ui/text_images/ro/battle_ui/overlay_exp_label_ro.png differ diff --git a/public/images/ui/text_images/ro/battle_ui/overlay_hp_label_boss_ro.png b/public/images/ui/text_images/ro/battle_ui/overlay_hp_label_boss_ro.png new file mode 100644 index 00000000000..0bcec679e05 Binary files /dev/null and b/public/images/ui/text_images/ro/battle_ui/overlay_hp_label_boss_ro.png differ diff --git a/public/images/ui/text_images/ro/battle_ui/overlay_hp_label_ro.png b/public/images/ui/text_images/ro/battle_ui/overlay_hp_label_ro.png new file mode 100644 index 00000000000..38a34761381 Binary files /dev/null and b/public/images/ui/text_images/ro/battle_ui/overlay_hp_label_ro.png differ diff --git a/public/images/ui/text_images/ro/battle_ui/overlay_lv_ro.png b/public/images/ui/text_images/ro/battle_ui/overlay_lv_ro.png new file mode 100644 index 00000000000..9ad4312d561 Binary files /dev/null and b/public/images/ui/text_images/ro/battle_ui/overlay_lv_ro.png differ diff --git a/public/images/ui/text_images/ro/battle_ui/pbinfo_stat_ro.json b/public/images/ui/text_images/ro/battle_ui/pbinfo_stat_ro.json new file mode 100644 index 00000000000..b5f74fdd7cc --- /dev/null +++ b/public/images/ui/text_images/ro/battle_ui/pbinfo_stat_ro.json @@ -0,0 +1,209 @@ +{ + "textures": [ + { + "image": "pbinfo_stat_ro.png", + "format": "RGBA8888", + "size": { + "w": 120, + "h": 7 + }, + "scale": 1, + "frames": [ + { + "filename": "SPATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 7 + }, + "frame": { + "x": 0, + "y": 0, + "w": 19, + "h": 7 + } + }, + { + "filename": "SPDEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 7 + }, + "frame": { + "x": 19, + "y": 0, + "w": 19, + "h": 7 + } + }, + { + "filename": "CRIT", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 17, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 17, + "h": 7 + }, + "frame": { + "x": 38, + "y": 0, + "w": 17, + "h": 7 + } + }, + { + "filename": "ACC", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 55, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "ATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 68, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "DEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 81, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "EVA", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 94, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "SPD", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 107, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "HP", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 9, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 9, + "h": 7 + }, + "frame": { + "x": 120, + "y": 0, + "w": 9, + "h": 7 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:86fbd1b45d46271597a7d9de482aaa74:df702dd9d88db50369f1a096f82fd915:05882267d3999884e0491134e98b1b53$" + } +} diff --git a/public/images/ui/text_images/ro/battle_ui/pbinfo_stat_ro.png b/public/images/ui/text_images/ro/battle_ui/pbinfo_stat_ro.png new file mode 100644 index 00000000000..9656c5f04b9 Binary files /dev/null and b/public/images/ui/text_images/ro/battle_ui/pbinfo_stat_ro.png differ diff --git a/public/images/ui/text_images/ro/party_ui/party_slot_overlay_hp_ro.png b/public/images/ui/text_images/ro/party_ui/party_slot_overlay_hp_ro.png new file mode 100644 index 00000000000..9be90b5c6bb Binary files /dev/null and b/public/images/ui/text_images/ro/party_ui/party_slot_overlay_hp_ro.png differ diff --git a/public/images/ui/text_images/ro/party_ui/party_slot_overlay_lv_ro.png b/public/images/ui/text_images/ro/party_ui/party_slot_overlay_lv_ro.png new file mode 100644 index 00000000000..122d3f7151c Binary files /dev/null and b/public/images/ui/text_images/ro/party_ui/party_slot_overlay_lv_ro.png differ diff --git a/public/images/ui/text_images/ro/summary/summary_dexnb_label_overlay_shiny_ro.png b/public/images/ui/text_images/ro/summary/summary_dexnb_label_overlay_shiny_ro.png new file mode 100644 index 00000000000..f35e327c29a Binary files /dev/null and b/public/images/ui/text_images/ro/summary/summary_dexnb_label_overlay_shiny_ro.png differ diff --git a/public/images/ui/text_images/ro/summary/summary_dexnb_label_ro.png b/public/images/ui/text_images/ro/summary/summary_dexnb_label_ro.png new file mode 100644 index 00000000000..bf568c486aa Binary files /dev/null and b/public/images/ui/text_images/ro/summary/summary_dexnb_label_ro.png differ diff --git a/public/images/ui/text_images/ro/summary/summary_moves_descriptions_title_ro.png b/public/images/ui/text_images/ro/summary/summary_moves_descriptions_title_ro.png new file mode 100644 index 00000000000..e83e8cafbfc Binary files /dev/null and b/public/images/ui/text_images/ro/summary/summary_moves_descriptions_title_ro.png differ diff --git a/public/images/ui/text_images/ro/summary/summary_moves_effect_title_ro.png b/public/images/ui/text_images/ro/summary/summary_moves_effect_title_ro.png new file mode 100644 index 00000000000..fbbaac0b260 Binary files /dev/null and b/public/images/ui/text_images/ro/summary/summary_moves_effect_title_ro.png differ diff --git a/public/images/ui/text_images/ro/summary/summary_moves_moves_title_ro.png b/public/images/ui/text_images/ro/summary/summary_moves_moves_title_ro.png new file mode 100644 index 00000000000..6bbb29c9c5f Binary files /dev/null and b/public/images/ui/text_images/ro/summary/summary_moves_moves_title_ro.png differ diff --git a/public/images/ui/text_images/ro/summary/summary_moves_overlay_pp_ro.png b/public/images/ui/text_images/ro/summary/summary_moves_overlay_pp_ro.png new file mode 100644 index 00000000000..a2bcd0bd021 Binary files /dev/null and b/public/images/ui/text_images/ro/summary/summary_moves_overlay_pp_ro.png differ diff --git a/public/images/ui/text_images/ro/summary/summary_profile_ability_ro.png b/public/images/ui/text_images/ro/summary/summary_profile_ability_ro.png new file mode 100644 index 00000000000..a05c22b7d47 Binary files /dev/null and b/public/images/ui/text_images/ro/summary/summary_profile_ability_ro.png differ diff --git a/public/images/ui/text_images/ro/summary/summary_profile_memo_title_ro.png b/public/images/ui/text_images/ro/summary/summary_profile_memo_title_ro.png new file mode 100644 index 00000000000..3d69c20e57f Binary files /dev/null and b/public/images/ui/text_images/ro/summary/summary_profile_memo_title_ro.png differ diff --git a/public/images/ui/text_images/ro/summary/summary_profile_passive_ro.png b/public/images/ui/text_images/ro/summary/summary_profile_passive_ro.png new file mode 100644 index 00000000000..c026e87a215 Binary files /dev/null and b/public/images/ui/text_images/ro/summary/summary_profile_passive_ro.png differ diff --git a/public/images/ui/text_images/ro/summary/summary_profile_profile_title_ro.png b/public/images/ui/text_images/ro/summary/summary_profile_profile_title_ro.png new file mode 100644 index 00000000000..4170dccf682 Binary files /dev/null and b/public/images/ui/text_images/ro/summary/summary_profile_profile_title_ro.png differ diff --git a/public/images/ui/text_images/ro/summary/summary_stats_exp_title_ro.png b/public/images/ui/text_images/ro/summary/summary_stats_exp_title_ro.png new file mode 100644 index 00000000000..d0d8d7f81a1 Binary files /dev/null and b/public/images/ui/text_images/ro/summary/summary_stats_exp_title_ro.png differ diff --git a/public/images/ui/text_images/ro/summary/summary_stats_expbar_title_ro.png b/public/images/ui/text_images/ro/summary/summary_stats_expbar_title_ro.png new file mode 100644 index 00000000000..4889b64eca8 Binary files /dev/null and b/public/images/ui/text_images/ro/summary/summary_stats_expbar_title_ro.png differ diff --git a/public/images/ui/text_images/ro/summary/summary_stats_item_title_ro.png b/public/images/ui/text_images/ro/summary/summary_stats_item_title_ro.png new file mode 100644 index 00000000000..42e08b3e52a Binary files /dev/null and b/public/images/ui/text_images/ro/summary/summary_stats_item_title_ro.png differ diff --git a/public/images/ui/text_images/ro/summary/summary_stats_stats_title_ro.png b/public/images/ui/text_images/ro/summary/summary_stats_stats_title_ro.png new file mode 100644 index 00000000000..f602a43c39d Binary files /dev/null and b/public/images/ui/text_images/ro/summary/summary_stats_stats_title_ro.png differ diff --git a/public/images/ui/text_images/ro/summary/summary_tabs_1_ro.png b/public/images/ui/text_images/ro/summary/summary_tabs_1_ro.png new file mode 100644 index 00000000000..750c407b075 Binary files /dev/null and b/public/images/ui/text_images/ro/summary/summary_tabs_1_ro.png differ diff --git a/public/images/ui/text_images/ro/summary/summary_tabs_2_ro.png b/public/images/ui/text_images/ro/summary/summary_tabs_2_ro.png new file mode 100644 index 00000000000..50c1db1f34c Binary files /dev/null and b/public/images/ui/text_images/ro/summary/summary_tabs_2_ro.png differ diff --git a/public/images/ui/text_images/ro/summary/summary_tabs_3_ro.png b/public/images/ui/text_images/ro/summary/summary_tabs_3_ro.png new file mode 100644 index 00000000000..24676712fb9 Binary files /dev/null and b/public/images/ui/text_images/ro/summary/summary_tabs_3_ro.png differ diff --git a/public/images/ui/text_images/ru/battle_ui/overlay_exp_label_ru.png b/public/images/ui/text_images/ru/battle_ui/overlay_exp_label_ru.png new file mode 100644 index 00000000000..8342acb74fb Binary files /dev/null and b/public/images/ui/text_images/ru/battle_ui/overlay_exp_label_ru.png differ diff --git a/public/images/ui/text_images/ru/battle_ui/overlay_hp_label_boss_ru.png b/public/images/ui/text_images/ru/battle_ui/overlay_hp_label_boss_ru.png new file mode 100644 index 00000000000..af85409a084 Binary files /dev/null and b/public/images/ui/text_images/ru/battle_ui/overlay_hp_label_boss_ru.png differ diff --git a/public/images/ui/text_images/ru/battle_ui/overlay_hp_label_ru.png b/public/images/ui/text_images/ru/battle_ui/overlay_hp_label_ru.png new file mode 100644 index 00000000000..b040247cd64 Binary files /dev/null and b/public/images/ui/text_images/ru/battle_ui/overlay_hp_label_ru.png differ diff --git a/public/images/ui/text_images/ru/battle_ui/overlay_lv_ru.png b/public/images/ui/text_images/ru/battle_ui/overlay_lv_ru.png new file mode 100644 index 00000000000..65ec593d656 Binary files /dev/null and b/public/images/ui/text_images/ru/battle_ui/overlay_lv_ru.png differ diff --git a/public/images/ui/text_images/ru/battle_ui/pbinfo_stat_ru.json b/public/images/ui/text_images/ru/battle_ui/pbinfo_stat_ru.json new file mode 100644 index 00000000000..61618578d25 --- /dev/null +++ b/public/images/ui/text_images/ru/battle_ui/pbinfo_stat_ru.json @@ -0,0 +1,209 @@ +{ + "textures": [ + { + "image": "pbinfo_stat_ru.png", + "format": "RGBA8888", + "size": { + "w": 120, + "h": 8 + }, + "scale": 1, + "frames": [ + { + "filename": "SPATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 8 + }, + "frame": { + "x": 0, + "y": 0, + "w": 19, + "h": 8 + } + }, + { + "filename": "SPDEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 8 + }, + "frame": { + "x": 19, + "y": 0, + "w": 19, + "h": 8 + } + }, + { + "filename": "CRIT", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 17, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 17, + "h": 8 + }, + "frame": { + "x": 38, + "y": 0, + "w": 17, + "h": 8 + } + }, + { + "filename": "ACC", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 8 + }, + "frame": { + "x": 55, + "y": 0, + "w": 13, + "h": 8 + } + }, + { + "filename": "ATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 8 + }, + "frame": { + "x": 68, + "y": 0, + "w": 13, + "h": 8 + } + }, + { + "filename": "DEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 8 + }, + "frame": { + "x": 81, + "y": 0, + "w": 13, + "h": 8 + } + }, + { + "filename": "EVA", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 8 + }, + "frame": { + "x": 94, + "y": 0, + "w": 13, + "h": 8 + } + }, + { + "filename": "SPD", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 8 + }, + "frame": { + "x": 107, + "y": 0, + "w": 13, + "h": 8 + } + }, + { + "filename": "HP", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 9, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 9, + "h": 8 + }, + "frame": { + "x": 120, + "y": 0, + "w": 9, + "h": 8 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:86fbd1b45d46271597a7d9de482aaa74:df702dd9d88db50369f1a096f82fd915:05882267d3999884e0491134e98b1b53$" + } +} diff --git a/public/images/ui/text_images/ru/battle_ui/pbinfo_stat_ru.png b/public/images/ui/text_images/ru/battle_ui/pbinfo_stat_ru.png new file mode 100644 index 00000000000..9688d78d425 Binary files /dev/null and b/public/images/ui/text_images/ru/battle_ui/pbinfo_stat_ru.png differ diff --git a/public/images/ui/text_images/ru/party_ui/party_slot_overlay_hp_ru.png b/public/images/ui/text_images/ru/party_ui/party_slot_overlay_hp_ru.png new file mode 100644 index 00000000000..5d9e62ac79a Binary files /dev/null and b/public/images/ui/text_images/ru/party_ui/party_slot_overlay_hp_ru.png differ diff --git a/public/images/ui/text_images/ru/party_ui/party_slot_overlay_lv_ru.png b/public/images/ui/text_images/ru/party_ui/party_slot_overlay_lv_ru.png new file mode 100644 index 00000000000..65ec593d656 Binary files /dev/null and b/public/images/ui/text_images/ru/party_ui/party_slot_overlay_lv_ru.png differ diff --git a/public/images/ui/text_images/ru/summary/summary_dexnb_label_overlay_shiny_ru.png b/public/images/ui/text_images/ru/summary/summary_dexnb_label_overlay_shiny_ru.png new file mode 100644 index 00000000000..1ba0191881d Binary files /dev/null and b/public/images/ui/text_images/ru/summary/summary_dexnb_label_overlay_shiny_ru.png differ diff --git a/public/images/ui/text_images/ru/summary/summary_dexnb_label_ru.png b/public/images/ui/text_images/ru/summary/summary_dexnb_label_ru.png new file mode 100644 index 00000000000..2a2e66426cb Binary files /dev/null and b/public/images/ui/text_images/ru/summary/summary_dexnb_label_ru.png differ diff --git a/public/images/ui/text_images/ru/summary/summary_moves_descriptions_title_ru.png b/public/images/ui/text_images/ru/summary/summary_moves_descriptions_title_ru.png new file mode 100644 index 00000000000..a435d6d845e Binary files /dev/null and b/public/images/ui/text_images/ru/summary/summary_moves_descriptions_title_ru.png differ diff --git a/public/images/ui/text_images/ru/summary/summary_moves_effect_title_ru.png b/public/images/ui/text_images/ru/summary/summary_moves_effect_title_ru.png new file mode 100644 index 00000000000..8bd4b965247 Binary files /dev/null and b/public/images/ui/text_images/ru/summary/summary_moves_effect_title_ru.png differ diff --git a/public/images/ui/text_images/ru/summary/summary_moves_moves_title_ru.png b/public/images/ui/text_images/ru/summary/summary_moves_moves_title_ru.png new file mode 100644 index 00000000000..94afd3226e8 Binary files /dev/null and b/public/images/ui/text_images/ru/summary/summary_moves_moves_title_ru.png differ diff --git a/public/images/ui/text_images/ru/summary/summary_moves_overlay_pp_ru.png b/public/images/ui/text_images/ru/summary/summary_moves_overlay_pp_ru.png new file mode 100644 index 00000000000..dbdc2275129 Binary files /dev/null and b/public/images/ui/text_images/ru/summary/summary_moves_overlay_pp_ru.png differ diff --git a/public/images/ui/text_images/ru/summary/summary_profile_ability_ru.png b/public/images/ui/text_images/ru/summary/summary_profile_ability_ru.png new file mode 100644 index 00000000000..ddfcc6102dc Binary files /dev/null and b/public/images/ui/text_images/ru/summary/summary_profile_ability_ru.png differ diff --git a/public/images/ui/text_images/ru/summary/summary_profile_memo_title_ru.png b/public/images/ui/text_images/ru/summary/summary_profile_memo_title_ru.png new file mode 100644 index 00000000000..743a2f36454 Binary files /dev/null and b/public/images/ui/text_images/ru/summary/summary_profile_memo_title_ru.png differ diff --git a/public/images/ui/text_images/ru/summary/summary_profile_passive_ru.png b/public/images/ui/text_images/ru/summary/summary_profile_passive_ru.png new file mode 100644 index 00000000000..29179b6d75b Binary files /dev/null and b/public/images/ui/text_images/ru/summary/summary_profile_passive_ru.png differ diff --git a/public/images/ui/text_images/ru/summary/summary_profile_profile_title_ru.png b/public/images/ui/text_images/ru/summary/summary_profile_profile_title_ru.png new file mode 100644 index 00000000000..77edb538634 Binary files /dev/null and b/public/images/ui/text_images/ru/summary/summary_profile_profile_title_ru.png differ diff --git a/public/images/ui/text_images/ru/summary/summary_stats_exp_title_ru.png b/public/images/ui/text_images/ru/summary/summary_stats_exp_title_ru.png new file mode 100644 index 00000000000..e058eaa917e Binary files /dev/null and b/public/images/ui/text_images/ru/summary/summary_stats_exp_title_ru.png differ diff --git a/public/images/ui/text_images/ru/summary/summary_stats_expbar_title_ru.png b/public/images/ui/text_images/ru/summary/summary_stats_expbar_title_ru.png new file mode 100644 index 00000000000..424a5378f7e Binary files /dev/null and b/public/images/ui/text_images/ru/summary/summary_stats_expbar_title_ru.png differ diff --git a/public/images/ui/text_images/ru/summary/summary_stats_item_title_ru.png b/public/images/ui/text_images/ru/summary/summary_stats_item_title_ru.png new file mode 100644 index 00000000000..95b01d062ab Binary files /dev/null and b/public/images/ui/text_images/ru/summary/summary_stats_item_title_ru.png differ diff --git a/public/images/ui/text_images/ru/summary/summary_stats_stats_title_ru.png b/public/images/ui/text_images/ru/summary/summary_stats_stats_title_ru.png new file mode 100644 index 00000000000..0c1c5dc9445 Binary files /dev/null and b/public/images/ui/text_images/ru/summary/summary_stats_stats_title_ru.png differ diff --git a/public/images/ui/text_images/ru/summary/summary_tabs_1_ru.png b/public/images/ui/text_images/ru/summary/summary_tabs_1_ru.png new file mode 100644 index 00000000000..1fef6034ad7 Binary files /dev/null and b/public/images/ui/text_images/ru/summary/summary_tabs_1_ru.png differ diff --git a/public/images/ui/text_images/ru/summary/summary_tabs_2_ru.png b/public/images/ui/text_images/ru/summary/summary_tabs_2_ru.png new file mode 100644 index 00000000000..0382fc880a9 Binary files /dev/null and b/public/images/ui/text_images/ru/summary/summary_tabs_2_ru.png differ diff --git a/public/images/ui/text_images/ru/summary/summary_tabs_3_ru.png b/public/images/ui/text_images/ru/summary/summary_tabs_3_ru.png new file mode 100644 index 00000000000..1395ac840af Binary files /dev/null and b/public/images/ui/text_images/ru/summary/summary_tabs_3_ru.png differ diff --git a/public/images/ui/text_images/tl/battle_ui/overlay_exp_label_tl.png b/public/images/ui/text_images/tl/battle_ui/overlay_exp_label_tl.png new file mode 100644 index 00000000000..fde37213eff Binary files /dev/null and b/public/images/ui/text_images/tl/battle_ui/overlay_exp_label_tl.png differ diff --git a/public/images/ui/text_images/tl/battle_ui/overlay_hp_label_boss_tl.png b/public/images/ui/text_images/tl/battle_ui/overlay_hp_label_boss_tl.png new file mode 100644 index 00000000000..0bcec679e05 Binary files /dev/null and b/public/images/ui/text_images/tl/battle_ui/overlay_hp_label_boss_tl.png differ diff --git a/public/images/ui/text_images/tl/battle_ui/overlay_hp_label_tl.png b/public/images/ui/text_images/tl/battle_ui/overlay_hp_label_tl.png new file mode 100644 index 00000000000..38a34761381 Binary files /dev/null and b/public/images/ui/text_images/tl/battle_ui/overlay_hp_label_tl.png differ diff --git a/public/images/ui/text_images/tl/battle_ui/overlay_lv_tl.png b/public/images/ui/text_images/tl/battle_ui/overlay_lv_tl.png new file mode 100644 index 00000000000..9ad4312d561 Binary files /dev/null and b/public/images/ui/text_images/tl/battle_ui/overlay_lv_tl.png differ diff --git a/public/images/ui/text_images/tl/battle_ui/pbinfo_stat_tl.json b/public/images/ui/text_images/tl/battle_ui/pbinfo_stat_tl.json new file mode 100644 index 00000000000..d2277c79f24 --- /dev/null +++ b/public/images/ui/text_images/tl/battle_ui/pbinfo_stat_tl.json @@ -0,0 +1,209 @@ +{ + "textures": [ + { + "image": "pbinfo_stat_tl.png", + "format": "RGBA8888", + "size": { + "w": 120, + "h": 7 + }, + "scale": 1, + "frames": [ + { + "filename": "SPATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 7 + }, + "frame": { + "x": 0, + "y": 0, + "w": 19, + "h": 7 + } + }, + { + "filename": "SPDEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 7 + }, + "frame": { + "x": 19, + "y": 0, + "w": 19, + "h": 7 + } + }, + { + "filename": "CRIT", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 17, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 17, + "h": 7 + }, + "frame": { + "x": 38, + "y": 0, + "w": 17, + "h": 7 + } + }, + { + "filename": "ACC", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 55, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "ATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 68, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "DEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 81, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "EVA", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 94, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "SPD", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 107, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "HP", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 9, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 9, + "h": 7 + }, + "frame": { + "x": 120, + "y": 0, + "w": 9, + "h": 7 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:86fbd1b45d46271597a7d9de482aaa74:df702dd9d88db50369f1a096f82fd915:05882267d3999884e0491134e98b1b53$" + } +} diff --git a/public/images/ui/text_images/tl/battle_ui/pbinfo_stat_tl.png b/public/images/ui/text_images/tl/battle_ui/pbinfo_stat_tl.png new file mode 100644 index 00000000000..9656c5f04b9 Binary files /dev/null and b/public/images/ui/text_images/tl/battle_ui/pbinfo_stat_tl.png differ diff --git a/public/images/ui/text_images/tl/party_ui/party_slot_overlay_hp_tl.png b/public/images/ui/text_images/tl/party_ui/party_slot_overlay_hp_tl.png new file mode 100644 index 00000000000..9be90b5c6bb Binary files /dev/null and b/public/images/ui/text_images/tl/party_ui/party_slot_overlay_hp_tl.png differ diff --git a/public/images/ui/text_images/tl/party_ui/party_slot_overlay_lv_tl.png b/public/images/ui/text_images/tl/party_ui/party_slot_overlay_lv_tl.png new file mode 100644 index 00000000000..122d3f7151c Binary files /dev/null and b/public/images/ui/text_images/tl/party_ui/party_slot_overlay_lv_tl.png differ diff --git a/public/images/ui/text_images/tl/summary/summary_dexnb_label_overlay_shiny_tl.png b/public/images/ui/text_images/tl/summary/summary_dexnb_label_overlay_shiny_tl.png new file mode 100644 index 00000000000..f35e327c29a Binary files /dev/null and b/public/images/ui/text_images/tl/summary/summary_dexnb_label_overlay_shiny_tl.png differ diff --git a/public/images/ui/text_images/tl/summary/summary_dexnb_label_tl.png b/public/images/ui/text_images/tl/summary/summary_dexnb_label_tl.png new file mode 100644 index 00000000000..bf568c486aa Binary files /dev/null and b/public/images/ui/text_images/tl/summary/summary_dexnb_label_tl.png differ diff --git a/public/images/ui/text_images/tl/summary/summary_moves_descriptions_title_tl.png b/public/images/ui/text_images/tl/summary/summary_moves_descriptions_title_tl.png new file mode 100644 index 00000000000..e83e8cafbfc Binary files /dev/null and b/public/images/ui/text_images/tl/summary/summary_moves_descriptions_title_tl.png differ diff --git a/public/images/ui/text_images/tl/summary/summary_moves_effect_title_tl.png b/public/images/ui/text_images/tl/summary/summary_moves_effect_title_tl.png new file mode 100644 index 00000000000..fbbaac0b260 Binary files /dev/null and b/public/images/ui/text_images/tl/summary/summary_moves_effect_title_tl.png differ diff --git a/public/images/ui/text_images/tl/summary/summary_moves_moves_title_tl.png b/public/images/ui/text_images/tl/summary/summary_moves_moves_title_tl.png new file mode 100644 index 00000000000..6bbb29c9c5f Binary files /dev/null and b/public/images/ui/text_images/tl/summary/summary_moves_moves_title_tl.png differ diff --git a/public/images/ui/text_images/tl/summary/summary_moves_overlay_pp_tl.png b/public/images/ui/text_images/tl/summary/summary_moves_overlay_pp_tl.png new file mode 100644 index 00000000000..a2bcd0bd021 Binary files /dev/null and b/public/images/ui/text_images/tl/summary/summary_moves_overlay_pp_tl.png differ diff --git a/public/images/ui/text_images/tl/summary/summary_profile_ability_tl.png b/public/images/ui/text_images/tl/summary/summary_profile_ability_tl.png new file mode 100644 index 00000000000..a05c22b7d47 Binary files /dev/null and b/public/images/ui/text_images/tl/summary/summary_profile_ability_tl.png differ diff --git a/public/images/ui/text_images/tl/summary/summary_profile_memo_title_tl.png b/public/images/ui/text_images/tl/summary/summary_profile_memo_title_tl.png new file mode 100644 index 00000000000..3d69c20e57f Binary files /dev/null and b/public/images/ui/text_images/tl/summary/summary_profile_memo_title_tl.png differ diff --git a/public/images/ui/text_images/tl/summary/summary_profile_passive_tl.png b/public/images/ui/text_images/tl/summary/summary_profile_passive_tl.png new file mode 100644 index 00000000000..c026e87a215 Binary files /dev/null and b/public/images/ui/text_images/tl/summary/summary_profile_passive_tl.png differ diff --git a/public/images/ui/text_images/tl/summary/summary_profile_profile_title_tl.png b/public/images/ui/text_images/tl/summary/summary_profile_profile_title_tl.png new file mode 100644 index 00000000000..4170dccf682 Binary files /dev/null and b/public/images/ui/text_images/tl/summary/summary_profile_profile_title_tl.png differ diff --git a/public/images/ui/text_images/tl/summary/summary_stats_exp_title_tl.png b/public/images/ui/text_images/tl/summary/summary_stats_exp_title_tl.png new file mode 100644 index 00000000000..d0d8d7f81a1 Binary files /dev/null and b/public/images/ui/text_images/tl/summary/summary_stats_exp_title_tl.png differ diff --git a/public/images/ui/text_images/tl/summary/summary_stats_expbar_title_tl.png b/public/images/ui/text_images/tl/summary/summary_stats_expbar_title_tl.png new file mode 100644 index 00000000000..4889b64eca8 Binary files /dev/null and b/public/images/ui/text_images/tl/summary/summary_stats_expbar_title_tl.png differ diff --git a/public/images/ui/text_images/tl/summary/summary_stats_item_title_tl.png b/public/images/ui/text_images/tl/summary/summary_stats_item_title_tl.png new file mode 100644 index 00000000000..42e08b3e52a Binary files /dev/null and b/public/images/ui/text_images/tl/summary/summary_stats_item_title_tl.png differ diff --git a/public/images/ui/text_images/tl/summary/summary_stats_stats_title_tl.png b/public/images/ui/text_images/tl/summary/summary_stats_stats_title_tl.png new file mode 100644 index 00000000000..f602a43c39d Binary files /dev/null and b/public/images/ui/text_images/tl/summary/summary_stats_stats_title_tl.png differ diff --git a/public/images/ui/text_images/tl/summary/summary_tabs_1_tl.png b/public/images/ui/text_images/tl/summary/summary_tabs_1_tl.png new file mode 100644 index 00000000000..750c407b075 Binary files /dev/null and b/public/images/ui/text_images/tl/summary/summary_tabs_1_tl.png differ diff --git a/public/images/ui/text_images/tl/summary/summary_tabs_2_tl.png b/public/images/ui/text_images/tl/summary/summary_tabs_2_tl.png new file mode 100644 index 00000000000..50c1db1f34c Binary files /dev/null and b/public/images/ui/text_images/tl/summary/summary_tabs_2_tl.png differ diff --git a/public/images/ui/text_images/tl/summary/summary_tabs_3_tl.png b/public/images/ui/text_images/tl/summary/summary_tabs_3_tl.png new file mode 100644 index 00000000000..24676712fb9 Binary files /dev/null and b/public/images/ui/text_images/tl/summary/summary_tabs_3_tl.png differ diff --git a/public/images/ui/text_images/tr/battle_ui/overlay_exp_label_tr.png b/public/images/ui/text_images/tr/battle_ui/overlay_exp_label_tr.png new file mode 100644 index 00000000000..0920a95fba2 Binary files /dev/null and b/public/images/ui/text_images/tr/battle_ui/overlay_exp_label_tr.png differ diff --git a/public/images/ui/text_images/tr/battle_ui/overlay_hp_label_boss_tr.png b/public/images/ui/text_images/tr/battle_ui/overlay_hp_label_boss_tr.png new file mode 100644 index 00000000000..0bcec679e05 Binary files /dev/null and b/public/images/ui/text_images/tr/battle_ui/overlay_hp_label_boss_tr.png differ diff --git a/public/images/ui/text_images/tr/battle_ui/overlay_hp_label_tr.png b/public/images/ui/text_images/tr/battle_ui/overlay_hp_label_tr.png new file mode 100644 index 00000000000..e28aceaf0fa Binary files /dev/null and b/public/images/ui/text_images/tr/battle_ui/overlay_hp_label_tr.png differ diff --git a/public/images/ui/text_images/tr/battle_ui/overlay_lv_tr.png b/public/images/ui/text_images/tr/battle_ui/overlay_lv_tr.png new file mode 100644 index 00000000000..5140444ec15 Binary files /dev/null and b/public/images/ui/text_images/tr/battle_ui/overlay_lv_tr.png differ diff --git a/public/images/ui/text_images/tr/battle_ui/pbinfo_stat_tr.json b/public/images/ui/text_images/tr/battle_ui/pbinfo_stat_tr.json new file mode 100644 index 00000000000..c3ccb4a5391 --- /dev/null +++ b/public/images/ui/text_images/tr/battle_ui/pbinfo_stat_tr.json @@ -0,0 +1,209 @@ +{ + "textures": [ + { + "image": "pbinfo_stat_tr.png", + "format": "RGBA8888", + "size": { + "w": 120, + "h": 7 + }, + "scale": 1, + "frames": [ + { + "filename": "SPATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 7 + }, + "frame": { + "x": 0, + "y": 0, + "w": 19, + "h": 7 + } + }, + { + "filename": "SPDEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 7 + }, + "frame": { + "x": 19, + "y": 0, + "w": 19, + "h": 7 + } + }, + { + "filename": "CRIT", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 17, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 17, + "h": 7 + }, + "frame": { + "x": 38, + "y": 0, + "w": 17, + "h": 7 + } + }, + { + "filename": "ACC", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 55, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "ATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 68, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "DEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 81, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "EVA", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 94, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "SPD", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 107, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "HP", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 9, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 9, + "h": 7 + }, + "frame": { + "x": 120, + "y": 0, + "w": 9, + "h": 7 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:86fbd1b45d46271597a7d9de482aaa74:df702dd9d88db50369f1a096f82fd915:05882267d3999884e0491134e98b1b53$" + } +} diff --git a/public/images/ui/text_images/tr/battle_ui/pbinfo_stat_tr.png b/public/images/ui/text_images/tr/battle_ui/pbinfo_stat_tr.png new file mode 100644 index 00000000000..9656c5f04b9 Binary files /dev/null and b/public/images/ui/text_images/tr/battle_ui/pbinfo_stat_tr.png differ diff --git a/public/images/ui/text_images/tr/party_ui/party_slot_overlay_hp_tr.png b/public/images/ui/text_images/tr/party_ui/party_slot_overlay_hp_tr.png new file mode 100644 index 00000000000..bb0017bcb58 Binary files /dev/null and b/public/images/ui/text_images/tr/party_ui/party_slot_overlay_hp_tr.png differ diff --git a/public/images/ui/text_images/tr/party_ui/party_slot_overlay_lv_tr.png b/public/images/ui/text_images/tr/party_ui/party_slot_overlay_lv_tr.png new file mode 100644 index 00000000000..12782430b9e Binary files /dev/null and b/public/images/ui/text_images/tr/party_ui/party_slot_overlay_lv_tr.png differ diff --git a/public/images/ui/text_images/tr/summary/summary_dexnb_label_overlay_shiny_tr.png b/public/images/ui/text_images/tr/summary/summary_dexnb_label_overlay_shiny_tr.png new file mode 100644 index 00000000000..f35e327c29a Binary files /dev/null and b/public/images/ui/text_images/tr/summary/summary_dexnb_label_overlay_shiny_tr.png differ diff --git a/public/images/ui/text_images/tr/summary/summary_dexnb_label_tr.png b/public/images/ui/text_images/tr/summary/summary_dexnb_label_tr.png new file mode 100644 index 00000000000..bf568c486aa Binary files /dev/null and b/public/images/ui/text_images/tr/summary/summary_dexnb_label_tr.png differ diff --git a/public/images/ui/text_images/tr/summary/summary_moves_descriptions_title_tr.png b/public/images/ui/text_images/tr/summary/summary_moves_descriptions_title_tr.png new file mode 100644 index 00000000000..e83e8cafbfc Binary files /dev/null and b/public/images/ui/text_images/tr/summary/summary_moves_descriptions_title_tr.png differ diff --git a/public/images/ui/text_images/tr/summary/summary_moves_effect_title_tr.png b/public/images/ui/text_images/tr/summary/summary_moves_effect_title_tr.png new file mode 100644 index 00000000000..fbbaac0b260 Binary files /dev/null and b/public/images/ui/text_images/tr/summary/summary_moves_effect_title_tr.png differ diff --git a/public/images/ui/text_images/tr/summary/summary_moves_moves_title_tr.png b/public/images/ui/text_images/tr/summary/summary_moves_moves_title_tr.png new file mode 100644 index 00000000000..6bbb29c9c5f Binary files /dev/null and b/public/images/ui/text_images/tr/summary/summary_moves_moves_title_tr.png differ diff --git a/public/images/ui/text_images/tr/summary/summary_moves_overlay_pp_tr.png b/public/images/ui/text_images/tr/summary/summary_moves_overlay_pp_tr.png new file mode 100644 index 00000000000..a2bcd0bd021 Binary files /dev/null and b/public/images/ui/text_images/tr/summary/summary_moves_overlay_pp_tr.png differ diff --git a/public/images/ui/text_images/tr/summary/summary_profile_ability_tr.png b/public/images/ui/text_images/tr/summary/summary_profile_ability_tr.png new file mode 100644 index 00000000000..a05c22b7d47 Binary files /dev/null and b/public/images/ui/text_images/tr/summary/summary_profile_ability_tr.png differ diff --git a/public/images/ui/text_images/tr/summary/summary_profile_memo_title_tr.png b/public/images/ui/text_images/tr/summary/summary_profile_memo_title_tr.png new file mode 100644 index 00000000000..3d69c20e57f Binary files /dev/null and b/public/images/ui/text_images/tr/summary/summary_profile_memo_title_tr.png differ diff --git a/public/images/ui/text_images/tr/summary/summary_profile_passive_tr.png b/public/images/ui/text_images/tr/summary/summary_profile_passive_tr.png new file mode 100644 index 00000000000..c026e87a215 Binary files /dev/null and b/public/images/ui/text_images/tr/summary/summary_profile_passive_tr.png differ diff --git a/public/images/ui/text_images/tr/summary/summary_profile_profile_title_tr.png b/public/images/ui/text_images/tr/summary/summary_profile_profile_title_tr.png new file mode 100644 index 00000000000..4170dccf682 Binary files /dev/null and b/public/images/ui/text_images/tr/summary/summary_profile_profile_title_tr.png differ diff --git a/public/images/ui/text_images/tr/summary/summary_stats_exp_title_tr.png b/public/images/ui/text_images/tr/summary/summary_stats_exp_title_tr.png new file mode 100644 index 00000000000..d0d8d7f81a1 Binary files /dev/null and b/public/images/ui/text_images/tr/summary/summary_stats_exp_title_tr.png differ diff --git a/public/images/ui/text_images/tr/summary/summary_stats_expbar_title_tr.png b/public/images/ui/text_images/tr/summary/summary_stats_expbar_title_tr.png new file mode 100644 index 00000000000..4889b64eca8 Binary files /dev/null and b/public/images/ui/text_images/tr/summary/summary_stats_expbar_title_tr.png differ diff --git a/public/images/ui/text_images/tr/summary/summary_stats_item_title_tr.png b/public/images/ui/text_images/tr/summary/summary_stats_item_title_tr.png new file mode 100644 index 00000000000..42e08b3e52a Binary files /dev/null and b/public/images/ui/text_images/tr/summary/summary_stats_item_title_tr.png differ diff --git a/public/images/ui/text_images/tr/summary/summary_stats_stats_title_tr.png b/public/images/ui/text_images/tr/summary/summary_stats_stats_title_tr.png new file mode 100644 index 00000000000..f602a43c39d Binary files /dev/null and b/public/images/ui/text_images/tr/summary/summary_stats_stats_title_tr.png differ diff --git a/public/images/ui/text_images/tr/summary/summary_tabs_1_tr.png b/public/images/ui/text_images/tr/summary/summary_tabs_1_tr.png new file mode 100644 index 00000000000..750c407b075 Binary files /dev/null and b/public/images/ui/text_images/tr/summary/summary_tabs_1_tr.png differ diff --git a/public/images/ui/text_images/tr/summary/summary_tabs_2_tr.png b/public/images/ui/text_images/tr/summary/summary_tabs_2_tr.png new file mode 100644 index 00000000000..50c1db1f34c Binary files /dev/null and b/public/images/ui/text_images/tr/summary/summary_tabs_2_tr.png differ diff --git a/public/images/ui/text_images/tr/summary/summary_tabs_3_tr.png b/public/images/ui/text_images/tr/summary/summary_tabs_3_tr.png new file mode 100644 index 00000000000..24676712fb9 Binary files /dev/null and b/public/images/ui/text_images/tr/summary/summary_tabs_3_tr.png differ diff --git a/public/images/ui/text_images/zh-CN/battle_ui/overlay_exp_label_zh-CN.png b/public/images/ui/text_images/zh-CN/battle_ui/overlay_exp_label_zh-CN.png new file mode 100644 index 00000000000..fde37213eff Binary files /dev/null and b/public/images/ui/text_images/zh-CN/battle_ui/overlay_exp_label_zh-CN.png differ diff --git a/public/images/ui/text_images/zh-CN/battle_ui/overlay_hp_label_boss_zh-CN.png b/public/images/ui/text_images/zh-CN/battle_ui/overlay_hp_label_boss_zh-CN.png new file mode 100644 index 00000000000..0bcec679e05 Binary files /dev/null and b/public/images/ui/text_images/zh-CN/battle_ui/overlay_hp_label_boss_zh-CN.png differ diff --git a/public/images/ui/text_images/zh-CN/battle_ui/overlay_hp_label_zh-CN.png b/public/images/ui/text_images/zh-CN/battle_ui/overlay_hp_label_zh-CN.png new file mode 100644 index 00000000000..38a34761381 Binary files /dev/null and b/public/images/ui/text_images/zh-CN/battle_ui/overlay_hp_label_zh-CN.png differ diff --git a/public/images/ui/text_images/zh-CN/battle_ui/overlay_lv_zh-CN.png b/public/images/ui/text_images/zh-CN/battle_ui/overlay_lv_zh-CN.png new file mode 100644 index 00000000000..9ad4312d561 Binary files /dev/null and b/public/images/ui/text_images/zh-CN/battle_ui/overlay_lv_zh-CN.png differ diff --git a/public/images/ui/text_images/zh-CN/battle_ui/pbinfo_stat_zh-CN.json b/public/images/ui/text_images/zh-CN/battle_ui/pbinfo_stat_zh-CN.json new file mode 100644 index 00000000000..22a1da0b536 --- /dev/null +++ b/public/images/ui/text_images/zh-CN/battle_ui/pbinfo_stat_zh-CN.json @@ -0,0 +1,209 @@ +{ + "textures": [ + { + "image": "pbinfo_stat_zh-CN.png", + "format": "RGBA8888", + "size": { + "w": 120, + "h": 7 + }, + "scale": 1, + "frames": [ + { + "filename": "SPATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 7 + }, + "frame": { + "x": 0, + "y": 0, + "w": 19, + "h": 7 + } + }, + { + "filename": "SPDEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 7 + }, + "frame": { + "x": 19, + "y": 0, + "w": 19, + "h": 7 + } + }, + { + "filename": "CRIT", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 17, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 17, + "h": 7 + }, + "frame": { + "x": 38, + "y": 0, + "w": 17, + "h": 7 + } + }, + { + "filename": "ACC", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 55, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "ATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 68, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "DEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 81, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "EVA", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 94, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "SPD", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 107, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "HP", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 9, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 9, + "h": 7 + }, + "frame": { + "x": 120, + "y": 0, + "w": 9, + "h": 7 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:86fbd1b45d46271597a7d9de482aaa74:df702dd9d88db50369f1a096f82fd915:05882267d3999884e0491134e98b1b53$" + } +} diff --git a/public/images/ui/text_images/zh-CN/battle_ui/pbinfo_stat_zh-CN.png b/public/images/ui/text_images/zh-CN/battle_ui/pbinfo_stat_zh-CN.png new file mode 100644 index 00000000000..9656c5f04b9 Binary files /dev/null and b/public/images/ui/text_images/zh-CN/battle_ui/pbinfo_stat_zh-CN.png differ diff --git a/public/images/ui/text_images/zh-CN/party_ui/party_slot_overlay_hp_zh-CN.png b/public/images/ui/text_images/zh-CN/party_ui/party_slot_overlay_hp_zh-CN.png new file mode 100644 index 00000000000..9be90b5c6bb Binary files /dev/null and b/public/images/ui/text_images/zh-CN/party_ui/party_slot_overlay_hp_zh-CN.png differ diff --git a/public/images/ui/text_images/zh-CN/party_ui/party_slot_overlay_lv_zh-CN.png b/public/images/ui/text_images/zh-CN/party_ui/party_slot_overlay_lv_zh-CN.png new file mode 100644 index 00000000000..122d3f7151c Binary files /dev/null and b/public/images/ui/text_images/zh-CN/party_ui/party_slot_overlay_lv_zh-CN.png differ diff --git a/public/images/ui/text_images/zh-CN/summary/summary_dexnb_label_overlay_shiny_zh-CN.png b/public/images/ui/text_images/zh-CN/summary/summary_dexnb_label_overlay_shiny_zh-CN.png new file mode 100644 index 00000000000..f35e327c29a Binary files /dev/null and b/public/images/ui/text_images/zh-CN/summary/summary_dexnb_label_overlay_shiny_zh-CN.png differ diff --git a/public/images/ui/text_images/zh-CN/summary/summary_dexnb_label_zh-CN.png b/public/images/ui/text_images/zh-CN/summary/summary_dexnb_label_zh-CN.png new file mode 100644 index 00000000000..bf568c486aa Binary files /dev/null and b/public/images/ui/text_images/zh-CN/summary/summary_dexnb_label_zh-CN.png differ diff --git a/public/images/ui/text_images/zh-CN/summary/summary_moves_descriptions_title_zh-CN.png b/public/images/ui/text_images/zh-CN/summary/summary_moves_descriptions_title_zh-CN.png new file mode 100644 index 00000000000..e83e8cafbfc Binary files /dev/null and b/public/images/ui/text_images/zh-CN/summary/summary_moves_descriptions_title_zh-CN.png differ diff --git a/public/images/ui/text_images/zh-CN/summary/summary_moves_effect_title_zh-CN.png b/public/images/ui/text_images/zh-CN/summary/summary_moves_effect_title_zh-CN.png new file mode 100644 index 00000000000..fbbaac0b260 Binary files /dev/null and b/public/images/ui/text_images/zh-CN/summary/summary_moves_effect_title_zh-CN.png differ diff --git a/public/images/ui/text_images/zh-CN/summary/summary_moves_moves_title_zh-CN.png b/public/images/ui/text_images/zh-CN/summary/summary_moves_moves_title_zh-CN.png new file mode 100644 index 00000000000..6bbb29c9c5f Binary files /dev/null and b/public/images/ui/text_images/zh-CN/summary/summary_moves_moves_title_zh-CN.png differ diff --git a/public/images/ui/text_images/zh-CN/summary/summary_moves_overlay_pp_zh-CN.png b/public/images/ui/text_images/zh-CN/summary/summary_moves_overlay_pp_zh-CN.png new file mode 100644 index 00000000000..a2bcd0bd021 Binary files /dev/null and b/public/images/ui/text_images/zh-CN/summary/summary_moves_overlay_pp_zh-CN.png differ diff --git a/public/images/ui/text_images/zh-CN/summary/summary_profile_ability_zh-CN.png b/public/images/ui/text_images/zh-CN/summary/summary_profile_ability_zh-CN.png new file mode 100644 index 00000000000..a05c22b7d47 Binary files /dev/null and b/public/images/ui/text_images/zh-CN/summary/summary_profile_ability_zh-CN.png differ diff --git a/public/images/ui/text_images/zh-CN/summary/summary_profile_memo_title_zh-CN.png b/public/images/ui/text_images/zh-CN/summary/summary_profile_memo_title_zh-CN.png new file mode 100644 index 00000000000..3d69c20e57f Binary files /dev/null and b/public/images/ui/text_images/zh-CN/summary/summary_profile_memo_title_zh-CN.png differ diff --git a/public/images/ui/text_images/zh-CN/summary/summary_profile_passive_zh-CN.png b/public/images/ui/text_images/zh-CN/summary/summary_profile_passive_zh-CN.png new file mode 100644 index 00000000000..c026e87a215 Binary files /dev/null and b/public/images/ui/text_images/zh-CN/summary/summary_profile_passive_zh-CN.png differ diff --git a/public/images/ui/text_images/zh-CN/summary/summary_profile_profile_title_zh-CN.png b/public/images/ui/text_images/zh-CN/summary/summary_profile_profile_title_zh-CN.png new file mode 100644 index 00000000000..4170dccf682 Binary files /dev/null and b/public/images/ui/text_images/zh-CN/summary/summary_profile_profile_title_zh-CN.png differ diff --git a/public/images/ui/text_images/zh-CN/summary/summary_stats_exp_title_zh-CN.png b/public/images/ui/text_images/zh-CN/summary/summary_stats_exp_title_zh-CN.png new file mode 100644 index 00000000000..d0d8d7f81a1 Binary files /dev/null and b/public/images/ui/text_images/zh-CN/summary/summary_stats_exp_title_zh-CN.png differ diff --git a/public/images/ui/text_images/zh-CN/summary/summary_stats_expbar_title_zh-CN.png b/public/images/ui/text_images/zh-CN/summary/summary_stats_expbar_title_zh-CN.png new file mode 100644 index 00000000000..4889b64eca8 Binary files /dev/null and b/public/images/ui/text_images/zh-CN/summary/summary_stats_expbar_title_zh-CN.png differ diff --git a/public/images/ui/text_images/zh-CN/summary/summary_stats_item_title_zh-CN.png b/public/images/ui/text_images/zh-CN/summary/summary_stats_item_title_zh-CN.png new file mode 100644 index 00000000000..42e08b3e52a Binary files /dev/null and b/public/images/ui/text_images/zh-CN/summary/summary_stats_item_title_zh-CN.png differ diff --git a/public/images/ui/text_images/zh-CN/summary/summary_stats_stats_title_zh-CN.png b/public/images/ui/text_images/zh-CN/summary/summary_stats_stats_title_zh-CN.png new file mode 100644 index 00000000000..f602a43c39d Binary files /dev/null and b/public/images/ui/text_images/zh-CN/summary/summary_stats_stats_title_zh-CN.png differ diff --git a/public/images/ui/text_images/zh-CN/summary/summary_tabs_1_zh-CN.png b/public/images/ui/text_images/zh-CN/summary/summary_tabs_1_zh-CN.png new file mode 100644 index 00000000000..750c407b075 Binary files /dev/null and b/public/images/ui/text_images/zh-CN/summary/summary_tabs_1_zh-CN.png differ diff --git a/public/images/ui/text_images/zh-CN/summary/summary_tabs_2_zh-CN.png b/public/images/ui/text_images/zh-CN/summary/summary_tabs_2_zh-CN.png new file mode 100644 index 00000000000..50c1db1f34c Binary files /dev/null and b/public/images/ui/text_images/zh-CN/summary/summary_tabs_2_zh-CN.png differ diff --git a/public/images/ui/text_images/zh-CN/summary/summary_tabs_3_zh-CN.png b/public/images/ui/text_images/zh-CN/summary/summary_tabs_3_zh-CN.png new file mode 100644 index 00000000000..24676712fb9 Binary files /dev/null and b/public/images/ui/text_images/zh-CN/summary/summary_tabs_3_zh-CN.png differ diff --git a/public/images/ui/text_images/zh-TW/battle_ui/overlay_exp_label_zh-TW.png b/public/images/ui/text_images/zh-TW/battle_ui/overlay_exp_label_zh-TW.png new file mode 100644 index 00000000000..fde37213eff Binary files /dev/null and b/public/images/ui/text_images/zh-TW/battle_ui/overlay_exp_label_zh-TW.png differ diff --git a/public/images/ui/text_images/zh-TW/battle_ui/overlay_hp_label_boss_zh-TW.png b/public/images/ui/text_images/zh-TW/battle_ui/overlay_hp_label_boss_zh-TW.png new file mode 100644 index 00000000000..0bcec679e05 Binary files /dev/null and b/public/images/ui/text_images/zh-TW/battle_ui/overlay_hp_label_boss_zh-TW.png differ diff --git a/public/images/ui/text_images/zh-TW/battle_ui/overlay_hp_label_zh-TW.png b/public/images/ui/text_images/zh-TW/battle_ui/overlay_hp_label_zh-TW.png new file mode 100644 index 00000000000..38a34761381 Binary files /dev/null and b/public/images/ui/text_images/zh-TW/battle_ui/overlay_hp_label_zh-TW.png differ diff --git a/public/images/ui/text_images/zh-TW/battle_ui/overlay_lv_zh-TW.png b/public/images/ui/text_images/zh-TW/battle_ui/overlay_lv_zh-TW.png new file mode 100644 index 00000000000..9ad4312d561 Binary files /dev/null and b/public/images/ui/text_images/zh-TW/battle_ui/overlay_lv_zh-TW.png differ diff --git a/public/images/ui/text_images/zh-TW/battle_ui/pbinfo_stat_zh-TW.json b/public/images/ui/text_images/zh-TW/battle_ui/pbinfo_stat_zh-TW.json new file mode 100644 index 00000000000..26c01d8bcc2 --- /dev/null +++ b/public/images/ui/text_images/zh-TW/battle_ui/pbinfo_stat_zh-TW.json @@ -0,0 +1,209 @@ +{ + "textures": [ + { + "image": "pbinfo_stat_zh-TW.png", + "format": "RGBA8888", + "size": { + "w": 120, + "h": 7 + }, + "scale": 1, + "frames": [ + { + "filename": "SPATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 7 + }, + "frame": { + "x": 0, + "y": 0, + "w": 19, + "h": 7 + } + }, + { + "filename": "SPDEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 7 + }, + "frame": { + "x": 19, + "y": 0, + "w": 19, + "h": 7 + } + }, + { + "filename": "CRIT", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 17, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 17, + "h": 7 + }, + "frame": { + "x": 38, + "y": 0, + "w": 17, + "h": 7 + } + }, + { + "filename": "ACC", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 55, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "ATK", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 68, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "DEF", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 81, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "EVA", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 94, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "SPD", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 13, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 13, + "h": 7 + }, + "frame": { + "x": 107, + "y": 0, + "w": 13, + "h": 7 + } + }, + { + "filename": "HP", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 9, + "h": 8 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 9, + "h": 7 + }, + "frame": { + "x": 120, + "y": 0, + "w": 9, + "h": 7 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:86fbd1b45d46271597a7d9de482aaa74:df702dd9d88db50369f1a096f82fd915:05882267d3999884e0491134e98b1b53$" + } +} diff --git a/public/images/ui/text_images/zh-TW/battle_ui/pbinfo_stat_zh-TW.png b/public/images/ui/text_images/zh-TW/battle_ui/pbinfo_stat_zh-TW.png new file mode 100644 index 00000000000..9656c5f04b9 Binary files /dev/null and b/public/images/ui/text_images/zh-TW/battle_ui/pbinfo_stat_zh-TW.png differ diff --git a/public/images/ui/text_images/zh-TW/party_ui/party_slot_overlay_hp_zh-TW.png b/public/images/ui/text_images/zh-TW/party_ui/party_slot_overlay_hp_zh-TW.png new file mode 100644 index 00000000000..9be90b5c6bb Binary files /dev/null and b/public/images/ui/text_images/zh-TW/party_ui/party_slot_overlay_hp_zh-TW.png differ diff --git a/public/images/ui/text_images/zh-TW/party_ui/party_slot_overlay_lv_zh-TW.png b/public/images/ui/text_images/zh-TW/party_ui/party_slot_overlay_lv_zh-TW.png new file mode 100644 index 00000000000..122d3f7151c Binary files /dev/null and b/public/images/ui/text_images/zh-TW/party_ui/party_slot_overlay_lv_zh-TW.png differ diff --git a/public/images/ui/text_images/zh-TW/summary/summary_dexnb_label_overlay_shiny_zh-TW.png b/public/images/ui/text_images/zh-TW/summary/summary_dexnb_label_overlay_shiny_zh-TW.png new file mode 100644 index 00000000000..f35e327c29a Binary files /dev/null and b/public/images/ui/text_images/zh-TW/summary/summary_dexnb_label_overlay_shiny_zh-TW.png differ diff --git a/public/images/ui/text_images/zh-TW/summary/summary_dexnb_label_zh-TW.png b/public/images/ui/text_images/zh-TW/summary/summary_dexnb_label_zh-TW.png new file mode 100644 index 00000000000..bf568c486aa Binary files /dev/null and b/public/images/ui/text_images/zh-TW/summary/summary_dexnb_label_zh-TW.png differ diff --git a/public/images/ui/text_images/zh-TW/summary/summary_moves_descriptions_title_zh-TW.png b/public/images/ui/text_images/zh-TW/summary/summary_moves_descriptions_title_zh-TW.png new file mode 100644 index 00000000000..e83e8cafbfc Binary files /dev/null and b/public/images/ui/text_images/zh-TW/summary/summary_moves_descriptions_title_zh-TW.png differ diff --git a/public/images/ui/text_images/zh-TW/summary/summary_moves_effect_title_zh-TW.png b/public/images/ui/text_images/zh-TW/summary/summary_moves_effect_title_zh-TW.png new file mode 100644 index 00000000000..fbbaac0b260 Binary files /dev/null and b/public/images/ui/text_images/zh-TW/summary/summary_moves_effect_title_zh-TW.png differ diff --git a/public/images/ui/text_images/zh-TW/summary/summary_moves_moves_title_zh-TW.png b/public/images/ui/text_images/zh-TW/summary/summary_moves_moves_title_zh-TW.png new file mode 100644 index 00000000000..6bbb29c9c5f Binary files /dev/null and b/public/images/ui/text_images/zh-TW/summary/summary_moves_moves_title_zh-TW.png differ diff --git a/public/images/ui/text_images/zh-TW/summary/summary_moves_overlay_pp_zh-TW.png b/public/images/ui/text_images/zh-TW/summary/summary_moves_overlay_pp_zh-TW.png new file mode 100644 index 00000000000..a2bcd0bd021 Binary files /dev/null and b/public/images/ui/text_images/zh-TW/summary/summary_moves_overlay_pp_zh-TW.png differ diff --git a/public/images/ui/text_images/zh-TW/summary/summary_profile_ability_zh-TW.png b/public/images/ui/text_images/zh-TW/summary/summary_profile_ability_zh-TW.png new file mode 100644 index 00000000000..a05c22b7d47 Binary files /dev/null and b/public/images/ui/text_images/zh-TW/summary/summary_profile_ability_zh-TW.png differ diff --git a/public/images/ui/text_images/zh-TW/summary/summary_profile_memo_title_zh-TW.png b/public/images/ui/text_images/zh-TW/summary/summary_profile_memo_title_zh-TW.png new file mode 100644 index 00000000000..3d69c20e57f Binary files /dev/null and b/public/images/ui/text_images/zh-TW/summary/summary_profile_memo_title_zh-TW.png differ diff --git a/public/images/ui/text_images/zh-TW/summary/summary_profile_passive_zh-TW.png b/public/images/ui/text_images/zh-TW/summary/summary_profile_passive_zh-TW.png new file mode 100644 index 00000000000..c026e87a215 Binary files /dev/null and b/public/images/ui/text_images/zh-TW/summary/summary_profile_passive_zh-TW.png differ diff --git a/public/images/ui/text_images/zh-TW/summary/summary_profile_profile_title_zh-TW.png b/public/images/ui/text_images/zh-TW/summary/summary_profile_profile_title_zh-TW.png new file mode 100644 index 00000000000..4170dccf682 Binary files /dev/null and b/public/images/ui/text_images/zh-TW/summary/summary_profile_profile_title_zh-TW.png differ diff --git a/public/images/ui/text_images/zh-TW/summary/summary_stats_exp_title_zh-TW.png b/public/images/ui/text_images/zh-TW/summary/summary_stats_exp_title_zh-TW.png new file mode 100644 index 00000000000..d0d8d7f81a1 Binary files /dev/null and b/public/images/ui/text_images/zh-TW/summary/summary_stats_exp_title_zh-TW.png differ diff --git a/public/images/ui/text_images/zh-TW/summary/summary_stats_expbar_title_zh-TW.png b/public/images/ui/text_images/zh-TW/summary/summary_stats_expbar_title_zh-TW.png new file mode 100644 index 00000000000..4889b64eca8 Binary files /dev/null and b/public/images/ui/text_images/zh-TW/summary/summary_stats_expbar_title_zh-TW.png differ diff --git a/public/images/ui/text_images/zh-TW/summary/summary_stats_item_title_zh-TW.png b/public/images/ui/text_images/zh-TW/summary/summary_stats_item_title_zh-TW.png new file mode 100644 index 00000000000..42e08b3e52a Binary files /dev/null and b/public/images/ui/text_images/zh-TW/summary/summary_stats_item_title_zh-TW.png differ diff --git a/public/images/ui/text_images/zh-TW/summary/summary_stats_stats_title_zh-TW.png b/public/images/ui/text_images/zh-TW/summary/summary_stats_stats_title_zh-TW.png new file mode 100644 index 00000000000..f602a43c39d Binary files /dev/null and b/public/images/ui/text_images/zh-TW/summary/summary_stats_stats_title_zh-TW.png differ diff --git a/public/images/ui/text_images/zh-TW/summary/summary_tabs_1_zh-TW.png b/public/images/ui/text_images/zh-TW/summary/summary_tabs_1_zh-TW.png new file mode 100644 index 00000000000..750c407b075 Binary files /dev/null and b/public/images/ui/text_images/zh-TW/summary/summary_tabs_1_zh-TW.png differ diff --git a/public/images/ui/text_images/zh-TW/summary/summary_tabs_2_zh-TW.png b/public/images/ui/text_images/zh-TW/summary/summary_tabs_2_zh-TW.png new file mode 100644 index 00000000000..50c1db1f34c Binary files /dev/null and b/public/images/ui/text_images/zh-TW/summary/summary_tabs_2_zh-TW.png differ diff --git a/public/images/ui/text_images/zh-TW/summary/summary_tabs_3_zh-TW.png b/public/images/ui/text_images/zh-TW/summary/summary_tabs_3_zh-TW.png new file mode 100644 index 00000000000..24676712fb9 Binary files /dev/null and b/public/images/ui/text_images/zh-TW/summary/summary_tabs_3_zh-TW.png differ diff --git a/public/locales b/public/locales index 813e5a34739..090bfefaf7e 160000 --- a/public/locales +++ b/public/locales @@ -1 +1 @@ -Subproject commit 813e5a34739100efd5936bc8a63301dfe451ff8d +Subproject commit 090bfefaf7e9d4efcbca61fa78a9cdf5d701830b diff --git a/public/service-worker.js b/public/service-worker.js index b45d2484709..ff380adca73 100644 --- a/public/service-worker.js +++ b/public/service-worker.js @@ -1,3 +1,7 @@ self.addEventListener('install', function () { console.log('Service worker installing...'); }); + +self.addEventListener('activate', (event) => { + event.waitUntil(self.clients.claim()); +}) \ No newline at end of file diff --git a/scripts/create-test/create-test.js b/scripts/create-test/create-test.js index 765993959d1..5e395783da7 100644 --- a/scripts/create-test/create-test.js +++ b/scripts/create-test/create-test.js @@ -156,7 +156,7 @@ async function runInteractive() { console.log(chalk.green.bold(`✔ File created at: test/${localDir}/${fileName}.test.ts\n`)); console.groupEnd(); } catch (err) { - console.error(chalk.red("✗ Error: ", err.message)); + console.error(chalk.red("✗ Error: ", err)); } } diff --git a/scripts/decrypt-save.js b/scripts/decrypt-save.js index e50f152f159..26b0a311378 100644 --- a/scripts/decrypt-save.js +++ b/scripts/decrypt-save.js @@ -1,7 +1,6 @@ // Usage: node decrypt-save.js [save-file] -// biome-ignore lint/performance/noNamespaceImport: This is how you import fs from node -import * as fs from "node:fs"; +import fs from "node:fs"; import crypto_js from "crypto-js"; const { AES, enc } = crypto_js; @@ -60,6 +59,11 @@ function decryptSave(path) { try { fileData = fs.readFileSync(path, "utf8"); } catch (e) { + if (!(e instanceof Error)) { + console.error(`Unrecognized error: ${e}`); + process.exit(1); + } + // @ts-expect-error - e is usually a SystemError (all of which have codes) switch (e.code) { case "ENOENT": console.error(`File not found: ${path}`); @@ -104,6 +108,13 @@ function writeToFile(filePath, data) { try { fs.writeFileSync(filePath, data); } catch (e) { + if (!(e instanceof Error)) { + console.error("Unknown error detected: ", e); + process.exitCode = 1; + return; + } + + // @ts-expect-error - e is usually a SystemError (all of which have codes) switch (e.code) { case "EACCES": console.error(`Could not open ${filePath}: Permission denied`); @@ -114,7 +125,8 @@ function writeToFile(filePath, data) { default: console.error(`Error writing file: ${e.message}`); } - process.exit(1); + process.exitCode = 1; + return; } } diff --git a/scripts/helpers/strings.js b/scripts/helpers/strings.js new file mode 100644 index 00000000000..3692bcfdd01 --- /dev/null +++ b/scripts/helpers/strings.js @@ -0,0 +1,179 @@ +// #region Split string code +// Regexps involved with splitting words in various case formats. +// Sourced from https://www.npmjs.com/package/change-case (with slight tweaking here and there) + +/** + * Regex to split at word boundaries. + * @type {RegExp} + */ +const SPLIT_LOWER_UPPER_RE = /([\p{Ll}\d])(\p{Lu})/gu; +/** + * Regex to split around single-letter uppercase words. + * @type {RegExp} + */ +const SPLIT_UPPER_UPPER_RE = /(\p{Lu})([\p{Lu}][\p{Ll}])/gu; +/** + * Regexp involved with stripping non-word delimiters from the result. + * @type {RegExp} + */ +const DELIM_STRIP_REGEXP = /[-_ ]+/giu; +// The replacement value for splits. +const SPLIT_REPLACE_VALUE = "$1\0$2"; + +/** + * Split any cased string into an array of its constituent words. + * @param {string} value + * @returns {string[]} The new string, delimited at each instance of one or more spaces, underscores, hyphens + * or lower-to-upper boundaries. + */ +function splitWords(value) { + let result = value.trim(); + result = result.replace(SPLIT_LOWER_UPPER_RE, SPLIT_REPLACE_VALUE).replace(SPLIT_UPPER_UPPER_RE, SPLIT_REPLACE_VALUE); + result = result.replace(DELIM_STRIP_REGEXP, "\0"); + // Trim the delimiter from around the output string + return trimFromStartAndEnd(result, "\0").split(/\0/g); +} + +/** + * Helper function to remove one or more sequences of characters from either end of a string. + * @param {string} str - The string to replace + * @param {string} charToTrim - The string to remove + * @returns {string} The string having been trimmed + */ +function trimFromStartAndEnd(str, charToTrim) { + let start = 0; + let end = str.length; + const blockLength = charToTrim.length; + while (str.startsWith(charToTrim, start)) { + start += blockLength; + } + if (start - end === blockLength) { + // Occurs if the ENTIRE string is made up of charToTrim (at which point we return nothing) + return ""; + } + while (str.endsWith(charToTrim, end)) { + end -= blockLength; + } + return str.slice(start, end); +} +// #endregion Split String code + +/** + * Capitalize the first letter of a string. + * @example + * ```ts + * console.log(capitalizeFirstLetter("consectetur adipiscing elit")); // returns "Consectetur adipiscing elit" + * ``` + * @param {string} str - The string whose first letter is to be capitalized + * @return {string} The original string with its first letter capitalized. + */ +export function capitalizeFirstLetter(str) { + return str.charAt(0).toUpperCase() + str.slice(1); +} + +/** + * Helper method to convert a string into `Title Case` (such as one used for console logs). + * @example + * ```ts + * console.log(toTitleCase("lorem ipsum dolor sit amet")); // returns "Lorem Ipsum Dolor Sit Amet" + * ``` + * @param {string} str - The string being converted + * @returns {string} The result of converting `str` into title case. + */ +export function toTitleCase(str) { + return splitWords(str) + .map(word => word.charAt(0).toUpperCase() + word.slice(1).toLowerCase()) + .join(" "); +} + +/** + * Helper method to convert a string into `camelCase` (such as one used for i18n keys). + * @example + * ```ts + * console.log(toCamelCase("BIG_ANGRY_TRAINER")); // returns "bigAngryTrainer" + * ``` + * @param {string} str - The string being converted + * @returns {string} The result of converting `str` into camel case. + */ +export function toCamelCase(str) { + return splitWords(str) + .map((word, index) => + index === 0 ? word.toLowerCase() : word.charAt(0).toUpperCase() + word.slice(1).toLowerCase(), + ) + .join(""); +} + +/** + * Helper method to convert a string into `PascalCase`. + * @example + * ```ts + * console.log(toPascalCase("hi how was your day")); // returns "HiHowWasYourDay" + * ``` + * @param {string} str - The string being converted + * @returns {string} The result of converting `str` into pascal case. + */ +export function toPascalCase(str) { + return splitWords(str) + .map(word => word.charAt(0).toUpperCase() + word.slice(1).toLowerCase()) + .join(""); +} + +/** + * Helper method to convert a string into `kebab-case` (such as one used for filenames). + * @example + * ```ts + * console.log(toKebabCase("not_kebab-caSe String")); // returns "not-kebab-case-string" + * ``` + * @param {string} str - The string being converted + * @returns {string} The result of converting `str` into kebab case. + */ +export function toKebabCase(str) { + return splitWords(str) + .map(word => word.toLowerCase()) + .join("-"); +} + +/** + * Helper method to convert a string into `snake_case` (such as one used for filenames). + * @example + * ```ts + * console.log(toSnakeCase("not-in snake_CaSe")); // returns "not_in_snake_case" + * ``` + * @param {string} str - The string being converted + * @returns {string} The result of converting `str` into snake case. + */ +export function toSnakeCase(str) { + return splitWords(str) + .map(word => word.toLowerCase()) + .join("_"); +} + +/** + * Helper method to convert a string into `UPPER_SNAKE_CASE`. + * @example + * ```ts + * console.log(toUpperSnakeCase("apples bananas_oranGes-PearS")); // returns "APPLES_BANANAS_ORANGES_PEARS" + * ``` + * @param {string} str - The string being converted + * @returns {string} The result of converting `str` into upper snake case. + */ +export function toUpperSnakeCase(str) { + return splitWords(str) + .map(word => word.toUpperCase()) + .join("_"); +} + +/** + * Helper method to convert a string into `Pascal_Snake_Case`. + * @example + * ```ts + * console.log(toPascalSnakeCase("apples-bananas_oranGes Pears")); // returns "Apples_Bananas_Oranges_Pears" + * ``` + * @param {string} str - The string being converted + * @returns {string} The result of converting `str` into pascal snake case. + */ +export function toPascalSnakeCase(str) { + return splitWords(str) + .map(word => word.charAt(0).toUpperCase() + word.slice(1).toLowerCase()) + .join("_"); +} diff --git a/scripts/jsconfig.json b/scripts/jsconfig.json new file mode 100644 index 00000000000..aed71f4f576 --- /dev/null +++ b/scripts/jsconfig.json @@ -0,0 +1,17 @@ +{ + "include": ["**/*.js"], + "compilerOptions": { + "allowJs": true, + "checkJs": true, + "rootDir": ".", + "target": "esnext", + "module": "nodenext", + "moduleResolution": "nodenext", + "erasableSyntaxOnly": true, + "strict": true, + "noEmit": true, + // Forcibly disable `node_modules` recursion to prevent TSC from typechecking random JS files. + // This is disabled by default in `tsconfig.json`, but needs to be explicitly disabled from the default of `2` + "maxNodeModuleJsDepth": 0 + } +} diff --git a/scripts/parse-egg-moves/egg-move-template.boilerplate.ts b/scripts/parse-egg-moves/egg-move-template.boilerplate.ts new file mode 100644 index 00000000000..bfac05f4bde --- /dev/null +++ b/scripts/parse-egg-moves/egg-move-template.boilerplate.ts @@ -0,0 +1,10 @@ +//! DO NOT EDIT THIS FILE - CREATED BY THE `eggMoves:parse` script automatically +import { MoveId } from "#enums/move-id"; +import { SpeciesId } from "#enums/species-id"; + +/** + * An object mapping all base form {@linkcode SpeciesId}s to an array of {@linkcode MoveId}s corresponding + * to their current egg moves. + * Generated by the `eggMoves:parse` script using a CSV sourced from the current Balance Team spreadsheet. + */ +export const speciesEggMoves = "{{table}}"; diff --git a/scripts/parse-egg-moves/help-message.js b/scripts/parse-egg-moves/help-message.js new file mode 100644 index 00000000000..b498acdf23c --- /dev/null +++ b/scripts/parse-egg-moves/help-message.js @@ -0,0 +1,17 @@ +import chalk from "chalk"; + +/** Show help/usage text for the `eggMoves:parse` CLI. */ +export function showHelpText() { + console.log(` +Usage: ${chalk.cyan("pnpm eggMoves:parse [options]")} +If given no options, assumes ${chalk.blue("`--interactive`")}. +If given only a file path, assumes ${chalk.blue("`--file`")}. + +${chalk.hex("#ffa500")("Options:")} + ${chalk.blue("-h, --help")} Show this help message. + ${chalk.blue("-f, --file[=PATH]")} Specify a path to a CSV file to read, or provide one from stdin. + ${chalk.blue("-t, --text[=TEXT]")} + ${chalk.blue("-c, --console[=TEXT]")} Specify CSV text to read, or provide it from stdin. + ${chalk.blue("-i, --interactive")} Run in interactive mode (default) +`); +} diff --git a/scripts/parse-egg-moves/interactive.js b/scripts/parse-egg-moves/interactive.js new file mode 100644 index 00000000000..68ee41e7900 --- /dev/null +++ b/scripts/parse-egg-moves/interactive.js @@ -0,0 +1,108 @@ +import fs from "fs"; +import chalk from "chalk"; +import inquirer from "inquirer"; +import { showHelpText } from "./help-message.js"; + +/** + * @import { Option } from "./main.js" + */ + +/** + * Prompt the user to interactively select an option (console/file) to retrieve the egg move CSV. + * @returns {Promise