Merge branch 'beta' of https://github.com/pagefaultgames/pokerogue into loginscreen

This commit is contained in:
ChrisLolz 2025-03-16 23:52:33 -04:00
commit 88c6e93e2c
1566 changed files with 213833 additions and 194459 deletions

View File

@ -2,92 +2,86 @@
module.exports = { module.exports = {
forbidden: [ forbidden: [
{ {
name: 'no-circular-at-runtime', name: "no-circular-at-runtime",
severity: 'warn', severity: "warn",
comment: comment:
'This dependency is part of a circular relationship. You might want to revise ' + "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) ', "your solution (i.e. use dependency inversion, make sure the modules have a single responsibility) ",
from: {}, from: {},
to: { to: {
circular: true, circular: true,
viaOnly: { viaOnly: {
dependencyTypesNot: [ dependencyTypesNot: ["type-only"],
'type-only' },
] },
}
}
}, },
{ {
name: 'no-orphans', name: "no-orphans",
comment: comment:
"This is an orphan module - it's likely not used (anymore?). Either use it or " + "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), " + "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 " + "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 " + "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.", "files (.d.ts), tsconfig.json and some of the babel and webpack configs.",
severity: 'warn', severity: "warn",
from: { from: {
orphan: true, orphan: true,
pathNot: [ pathNot: [
'(^|/)[.][^/]+[.](?:js|cjs|mjs|ts|cts|mts|json)$', // dot files "(^|/)[.][^/]+[.](?:js|cjs|mjs|ts|cts|mts|json)$", // dot files
'[.]d[.]ts$', // TypeScript declaration files "[.]d[.]ts$", // TypeScript declaration files
'(^|/)tsconfig[.]json$', // TypeScript config "(^|/)tsconfig[.]json$", // TypeScript config
'(^|/)(?:babel|webpack)[.]config[.](?:js|cjs|mjs|ts|cts|mts|json)$' // other configs "(^|/)(?:babel|webpack)[.]config[.](?:js|cjs|mjs|ts|cts|mts|json)$", // other configs
] ],
}, },
to: {}, to: {},
}, },
{ {
name: 'no-deprecated-core', name: "no-deprecated-core",
comment: comment:
'A module depends on a node core module that has been deprecated. Find an alternative - these are ' + "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.", "bound to exist - node doesn't deprecate lightly.",
severity: 'warn', severity: "warn",
from: {}, from: {},
to: { to: {
dependencyTypes: [ dependencyTypes: ["core"],
'core'
],
path: [ path: [
'^v8/tools/codemap$', "^v8/tools/codemap$",
'^v8/tools/consarray$', "^v8/tools/consarray$",
'^v8/tools/csvparser$', "^v8/tools/csvparser$",
'^v8/tools/logreader$', "^v8/tools/logreader$",
'^v8/tools/profile_view$', "^v8/tools/profile_view$",
'^v8/tools/profile$', "^v8/tools/profile$",
'^v8/tools/SourceMap$', "^v8/tools/SourceMap$",
'^v8/tools/splaytree$', "^v8/tools/splaytree$",
'^v8/tools/tickprocessor-driver$', "^v8/tools/tickprocessor-driver$",
'^v8/tools/tickprocessor$', "^v8/tools/tickprocessor$",
'^node-inspect/lib/_inspect$', "^node-inspect/lib/_inspect$",
'^node-inspect/lib/internal/inspect_client$', "^node-inspect/lib/internal/inspect_client$",
'^node-inspect/lib/internal/inspect_repl$', "^node-inspect/lib/internal/inspect_repl$",
'^async_hooks$', "^async_hooks$",
'^punycode$', "^punycode$",
'^domain$', "^domain$",
'^constants$', "^constants$",
'^sys$', "^sys$",
'^_linklist$', "^_linklist$",
'^_stream_wrap$' "^_stream_wrap$",
], ],
} },
}, },
{ {
name: 'not-to-deprecated', name: "not-to-deprecated",
comment: comment:
'This module uses a (version of an) npm module that has been deprecated. Either upgrade to a later ' + "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.', "version of that module, or find an alternative. Deprecated modules are a security risk.",
severity: 'warn', severity: "warn",
from: {}, from: {},
to: { to: {
dependencyTypes: [ dependencyTypes: ["deprecated"],
'deprecated' },
]
}
}, },
{ {
name: 'no-non-package-json', name: "no-non-package-json",
severity: 'error', severity: "error",
comment: comment:
"This module depends on an npm package that isn't in the 'dependencies' section of 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 " + "That's problematic as the package either (1) won't be available on live (2 - worse) will be " +
@ -95,87 +89,75 @@ module.exports = {
"in your package.json.", "in your package.json.",
from: {}, from: {},
to: { to: {
dependencyTypes: [ dependencyTypes: ["npm-no-pkg", "npm-unknown"],
'npm-no-pkg', },
'npm-unknown'
]
}
}, },
{ {
name: 'not-to-unresolvable', name: "not-to-unresolvable",
comment: comment:
"This module depends on a module that cannot be found ('resolved to disk'). If it's an npm " + "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.', "module: add it to your package.json. In all other cases you likely already know what to do.",
severity: 'error', severity: "error",
from: {}, from: {},
to: { to: {
couldNotResolve: true couldNotResolve: true,
} },
}, },
{ {
name: 'no-duplicate-dep-types', name: "no-duplicate-dep-types",
comment: comment:
"Likely this module depends on an external ('npm') package that occurs more than once " + "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 " + "in your package.json i.e. bot as a devDependencies and in dependencies. This will cause " +
"maintenance problems later on.", "maintenance problems later on.",
severity: 'warn', severity: "warn",
from: {}, from: {},
to: { to: {
moreThanOneDependencyType: true, moreThanOneDependencyType: true,
// as it's pretty common to have a type import be a type only import // as it's pretty common to have a type import be a type only import
// _and_ (e.g.) a devDependency - don't consider type-only dependency // _and_ (e.g.) a devDependency - don't consider type-only dependency
// types for this rule // types for this rule
dependencyTypesNot: ["type-only"] dependencyTypesNot: ["type-only"],
} },
}, },
/* rules you might want to tweak for your specific situation: */ /* rules you might want to tweak for your specific situation: */
{ {
name: 'not-to-spec', name: "not-to-spec",
comment: comment:
'This module depends on a spec (test) file. The sole responsibility of a spec file is to test code. ' + "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 " + "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.', "responsibility anymore. Factor it out into (e.g.) a separate utility/ helper or a mock.",
severity: 'error', severity: "error",
from: {}, from: {},
to: { to: {
path: '[.](?:spec|test)[.](?:js|mjs|cjs|jsx|ts|mts|cts|tsx)$' path: "[.](?:spec|test)[.](?:js|mjs|cjs|jsx|ts|mts|cts|tsx)$",
} },
}, },
{ {
name: 'not-to-dev-dep', name: "not-to-dev-dep",
severity: 'error', severity: "error",
comment: comment:
"This module depends on an npm package from the 'devDependencies' section of your " + "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 ' + "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'" + "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 ' + "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.pathNot re of the not-to-dev-dep rule in the dependency-cruiser configuration",
from: { from: {
path: '^(src)', path: "^(src)",
pathNot: [ pathNot: ["[.](?:spec|test|setup|script)[.](?:js|mjs|cjs|jsx|ts|mts|cts|tsx)$", "./test"],
'[.](?:spec|test|setup|script)[.](?:js|mjs|cjs|jsx|ts|mts|cts|tsx)$',
'src/test'
]
}, },
to: { to: {
dependencyTypes: [ dependencyTypes: ["npm-dev"],
'npm-dev',
],
// type only dependencies are not a problem as they don't end up in the // type only dependencies are not a problem as they don't end up in the
// production code or are ignored by the runtime. // production code or are ignored by the runtime.
dependencyTypesNot: [ dependencyTypesNot: ["type-only"],
'type-only' pathNot: ["node_modules/@types/"],
], },
pathNot: [
'node_modules/@types/'
]
}
}, },
{ {
name: 'optional-deps-used', name: "optional-deps-used",
severity: 'info', severity: "info",
comment: comment:
"This module depends on an npm package that is declared as an optional dependency " + "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. " + "in your package.json. As this makes sense in limited situations only, it's flagged here. " +
@ -183,33 +165,28 @@ module.exports = {
"dependency-cruiser configuration.", "dependency-cruiser configuration.",
from: {}, from: {},
to: { to: {
dependencyTypes: [ dependencyTypes: ["npm-optional"],
'npm-optional' },
]
}
}, },
{ {
name: 'peer-deps-used', name: "peer-deps-used",
comment: comment:
"This module depends on an npm package that is declared as a peer dependency " + "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 " + "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 " + "other cases - maybe not so much. If the use of a peer dependency is intentional " +
"add an exception to your dependency-cruiser configuration.", "add an exception to your dependency-cruiser configuration.",
severity: 'warn', severity: "warn",
from: {}, from: {},
to: { to: {
dependencyTypes: [ dependencyTypes: ["npm-peer"],
'npm-peer' },
] },
}
}
], ],
options: { options: {
/* Which modules not to follow further when encountered */ /* Which modules not to follow further when encountered */
doNotFollow: { doNotFollow: {
/* path: an array of regular expressions in strings to match against */ /* path: an array of regular expressions in strings to match against */
path: ['node_modules'] path: ["node_modules"],
}, },
/* Which modules to exclude */ /* Which modules to exclude */
@ -271,7 +248,7 @@ module.exports = {
defaults to './tsconfig.json'. defaults to './tsconfig.json'.
*/ */
tsConfig: { tsConfig: {
fileName: 'tsconfig.json' fileName: "tsconfig.json",
}, },
/* Webpack configuration to use to get resolve options from. /* Webpack configuration to use to get resolve options from.
@ -345,7 +322,7 @@ module.exports = {
collapses everything in node_modules to one folder deep so you see collapses everything in node_modules to one folder deep so you see
the external modules, but their innards. the external modules, but their innards.
*/ */
collapsePattern: 'node_modules/(?:@[^/]+/[^/]+|[^/]+)', collapsePattern: "node_modules/(?:@[^/]+/[^/]+|[^/]+)",
/* Options to tweak the appearance of your graph.See /* Options to tweak the appearance of your graph.See
https://github.com/sverweij/dependency-cruiser/blob/main/doc/options-reference.md#reporteroptions https://github.com/sverweij/dependency-cruiser/blob/main/doc/options-reference.md#reporteroptions
@ -367,7 +344,8 @@ module.exports = {
dependency graph reporter (`archi`) you probably want to tweak dependency graph reporter (`archi`) you probably want to tweak
this collapsePattern to your situation. this collapsePattern to your situation.
*/ */
collapsePattern: '^(?:packages|src|lib(s?)|app(s?)|bin|test(s?)|spec(s?))/[^/]+|node_modules/(?:@[^/]+/[^/]+|[^/]+)', collapsePattern:
"^(?:packages|src|lib(s?)|app(s?)|bin|test(s?)|spec(s?))/[^/]+|node_modules/(?:@[^/]+/[^/]+|[^/]+)",
/* Options to tweak the appearance of your graph. If you don't specify a /* Options to tweak the appearance of your graph. If you don't specify a
theme for 'archi' dependency-cruiser will use the one specified in the theme for 'archi' dependency-cruiser will use the one specified in the
@ -375,10 +353,10 @@ module.exports = {
*/ */
// theme: { }, // theme: { },
}, },
"text": { text: {
"highlightFocused": true highlightFocused: true,
}, },
} },
} },
}; };
// generated: dependency-cruiser@16.3.3 on 2024-06-13T23:26:36.169Z // generated: dependency-cruiser@16.3.3 on 2024-06-13T23:26:36.169Z

17
.github/CODEOWNERS vendored
View File

@ -4,4 +4,19 @@
* @pagefaultgames/junior-dev-team * @pagefaultgames/junior-dev-team
# github actions/templates etc. - Dev Leads # github actions/templates etc. - Dev Leads
/.github @pagefaultgames/dev-leads /.github @pagefaultgames/senior-dev-team
# Art Team
/public/**/*.png @pagefaultgames/art-team
/public/**/*.json @pagefaultgames/art-team
/public/images @pagefaultgames/art-team
/public/battle-anims @pagefaultgames/art-team
# Audio files
*.mp3 @pagefaultgames/composer-team
*.wav @pagefaultgames/composer-team
*.ogg @pagefaultgames/composer-team
/public/audio @pagefaultgames/composer-team
# Balance Files; contain actual code logic and must also be owned by dev team
/src/data/balance @pagefaultgames/balance-team @pagefaultgames/junior-dev-team

View File

@ -1,6 +1,7 @@
name: Bug Report name: Bug Report
description: Create a report to help us improve description: Create a report to help us improve
title: "[Bug] " title: "[Bug] "
type: bug
labels: ["Bug", "Triage"] labels: ["Bug", "Triage"]
body: body:
- type: markdown - type: markdown

View File

@ -1,6 +1,7 @@
name: Feature Request name: Feature Request
description: Suggest an idea for this project description: Suggest an idea for this project
title: "[Feature] " title: "[Feature] "
type: 'feature'
labels: ["Enhancement", "Triage"] labels: ["Enhancement", "Triage"]
body: body:
- type: markdown - type: markdown

View File

@ -1,4 +1,4 @@
name: ESLint name: Biome Code Quality
on: on:
# Trigger the workflow on push or pull request, # Trigger the workflow on push or pull request,
@ -28,10 +28,13 @@ jobs:
- name: Set up Node.js # Step to set up Node.js environment - name: Set up Node.js # Step to set up Node.js environment
uses: actions/setup-node@v4 # Use the setup-node action version 4 uses: actions/setup-node@v4 # Use the setup-node action version 4
with: with:
node-version: 20 # Specify Node.js version 20 node-version-file: '.nvmrc'
- name: Install Node.js dependencies # Step to install Node.js dependencies - name: Install Node.js dependencies # Step to install Node.js dependencies
run: npm ci # Use 'npm ci' to install dependencies run: npm ci # Use 'npm ci' to install dependencies
- name: eslint # Step to run linters - name: eslint # Step to run linters
run: npm run eslint-ci run: npm run eslint-ci
- name: Lint with Biome # Step to run linters
run: npm run biome-ci

4
.gitignore vendored
View File

@ -41,3 +41,7 @@ coverage
/dependency-graph.svg /dependency-graph.svg
/.vs /.vs
# Script outputs
./*.csv

1
.nvmrc Normal file
View File

@ -0,0 +1 @@
v20.13.1

View File

@ -343,34 +343,41 @@ In addition to the lists below, please check [the PokéRogue wiki](https://wiki.
# 💻 Development # 💻 Development
## Server Owner/Administrator ## Server Developers
- pancakes aka patapancakes - pancakes aka patapancakes
## Senior Developers ## Current and former Development Team members
- Walker - bennybroseph
- NightKev - Brain Frog
- Moka
- Temp aka Tempo-anon
- Madmadness65
## Developers
- CodeTappert - CodeTappert
- Dakurei
- flx-sta - flx-sta
- innerthunder
- frutescens - frutescens
- Greenlamp
- ImperialSympathizer
- innerthunder
- KimJeongSun
- Madmadness65
- Moka
- Navori
- NightKev
- Opaquer - Opaquer
- OrangeRed
- Sam aka Flashfyre (initial developer, started PokéRogue)
- SirzBenjie
- sirzento
- SN34KZ - SN34KZ
- Swain aka torranx - Swain aka torranx
- Temp aka Tempo-anon
## Junior Developers - Walker
- KimJeongSun - Wlowscha (aka Curbio)
- ImperialSympathizer - Xavion
## Bug/Issue Managers ## Bug/Issue Managers
- Snailman
- Daleks - Daleks
- Lily - Lily
- PigeonBar - PigeonBar
- Snailman
## Other Code Contributors ## Other Code Contributors
- Admiral-Billy - Admiral-Billy
@ -378,10 +385,7 @@ In addition to the lists below, please check [the PokéRogue wiki](https://wiki.
- arColm - arColm
- Arxalc - Arxalc
- AsdarDevelops - AsdarDevelops
- bennybroseph
- Brain Frog
- Corrade - Corrade
- Dakurei
- DustinLin - DustinLin
- ElizaAlex - ElizaAlex
- EmberCM - EmberCM
@ -391,7 +395,6 @@ In addition to the lists below, please check [the PokéRogue wiki](https://wiki.
- francktrouillez - francktrouillez
- FredeX - FredeX
- geeilhan - geeilhan
- Greenlamp
- happinyz - happinyz
- hayuna - hayuna
- InfernoVulpix - InfernoVulpix
@ -411,7 +414,6 @@ In addition to the lists below, please check [the PokéRogue wiki](https://wiki.
- Neverblade - Neverblade
- NxKarim - NxKarim
- okimin - okimin
- OrangeRed
- PigeonBar - PigeonBar
- PrabbyDD - PrabbyDD
- prateau - prateau
@ -421,10 +423,8 @@ In addition to the lists below, please check [the PokéRogue wiki](https://wiki.
- RedstonewolfX - RedstonewolfX
- ReneGV - ReneGV
- rnicar245 - rnicar245
- Sam aka Flashfyre (initial developer, started PokéRogue)
- schmidtc1 - schmidtc1
- shayebeadling - shayebeadling
- sirzento
- snoozbuster - snoozbuster
- sodaMelon - sodaMelon
- td76099 - td76099

View File

@ -3,23 +3,30 @@
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! 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!
# Contributing # Contributing
## 🛠️ Development ## 🛠️ Development
If you have the motivation and experience with Typescript/Javascript (or are willing to learn) please feel free to fork the repository and make pull requests with contributions. If you don't know what to work on but want to help, reference the below **To-Do** section or the **#feature-vote** channel in the discord. If you have the motivation and experience with Typescript/Javascript (or are willing to learn) please feel free to fork the repository and make pull requests with contributions. If you don't know what to work on but want to help, reference the below **To-Do** section or the **#feature-vote** channel in the discord.
### 💻 Environment Setup ### 💻 Environment Setup
#### Prerequisites #### Prerequisites
- node: 20.13.1 - node: 20.13.1
- npm: [how to install](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm) - npm: [how to install](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm)
#### Running Locally #### Running Locally
1. Clone the repo and in the root directory run `npm install` 1. Clone the repo and in the root directory run `npm install`
- *if you run into any errors, reach out in the **#dev-corner** channel in discord* - *if you run into any errors, reach out in the **#dev-corner** channel in discord*
2. Run `npm run start:dev` to locally run the project in `localhost:8000` 2. Run `npm run start:dev` to locally run the project in `localhost:8000`
#### Linting #### Linting
We're using ESLint as our common linter and formatter. It will run automatically during the pre-commit hook but if you would like to manually run it, use the `npm run eslint` script. To view the complete rules, check out the [eslint.config.js](./eslint.config.js) file.
We're using Biome as our common linter and formatter. It will run automatically during the pre-commit hook but if you would like to manually run it, use the `npm run biome` script. To view the complete rules, check out the [biome.jsonc](./biome.jsonc) file.
### 📚 Documentation ### 📚 Documentation
You can find the auto-generated documentation [here](https://pagefaultgames.github.io/pokerogue/main/index.html). You can find the auto-generated documentation [here](https://pagefaultgames.github.io/pokerogue/main/index.html).
For information on enemy AI, check out the [enemy-ai.md](./docs/enemy-ai.md) file. For information on enemy AI, check out the [enemy-ai.md](./docs/enemy-ai.md) file.
For detailed guidelines on documenting your code, refer to the [comments.md](./docs/comments.md) file. For detailed guidelines on documenting your code, refer to the [comments.md](./docs/comments.md) file.
@ -27,16 +34,20 @@ For detailed guidelines on documenting your code, refer to the [comments.md](./d
### ❔ FAQ ### ❔ FAQ
**How do I test a new _______?** **How do I test a new _______?**
- In the `src/overrides.ts` file there are overrides for most values you'll need to change for testing - In the `src/overrides.ts` file there are overrides for most values you'll need to change for testing
**How do I retrieve the translations?** **How do I retrieve the translations?**
- The translations were moved to the [dedicated translation repository](https://github.com/pagefaultgames/pokerogue-locales) and are now applied as a submodule in this project. - The translations were moved to the [dedicated translation repository](https://github.com/pagefaultgames/pokerogue-locales) and are now applied as a submodule in this project.
- The command to retrieve the translations is `git submodule update --init --recursive`. If you still struggle to get it working, please reach out to #dev-corner channel in Discord. - The command to retrieve the translations is `git submodule update --init --recursive`. If you still struggle to get it working, please reach out to #dev-corner channel in Discord.
## 🪧 To Do ## 🪧 To Do
Check out [Github Issues](https://github.com/pagefaultgames/pokerogue/issues) to see how can you help us! Check out [Github Issues](https://github.com/pagefaultgames/pokerogue/issues) to see how can you help us!
# 📝 Credits # 📝 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). > 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). Thank you to all the wonderful people that have contributed to the PokéRogue project! You can find the credits [here](./CREDITS.md).

106
biome.jsonc Normal file
View File

@ -0,0 +1,106 @@
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"vcs": {
"enabled": false,
"clientKind": "git",
"useIgnoreFile": true,
"defaultBranch": "beta"
},
"formatter": {
"enabled": true,
"useEditorconfig": true,
"indentStyle": "space",
"ignore": ["src/enums/*", "src/data/balance/*"],
"lineWidth": 120
},
"files": {
"ignoreUnknown": true,
// Adding folders to the ignore list is GREAT for performance because it prevents biome from descending into them
// and having to verify whether each individual file is ignored
"ignore": [
"**/*.d.ts",
"dist/*",
"build/*",
"coverage/*",
"public/*",
".github/*",
"node_modules/*",
".vscode/*",
"*.css", // TODO?
"*.html", // TODO?
"src/overrides.ts",
// TODO: these files are too big and complex, ignore them until their respective refactors
"src/data/moves/move.ts",
"src/data/ability.ts",
"src/field/pokemon.ts",
// this file is just too big:
"src/data/balance/tms.ts"
]
},
"organizeImports": { "enabled": false },
"linter": {
"ignore": [
"src/phases/move-effect-phase.ts" // TODO: unignore after move-effect-phase refactor
],
"enabled": true,
"rules": {
"recommended": true,
"correctness": {
"noUndeclaredVariables": "off",
"noUnusedVariables": "error",
"noSwitchDeclarations": "warn", // TODO: refactor and make this an error
"noVoidTypeReturn": "warn" // TODO: Refactor and make this an error
},
"style": {
"noVar": "error",
"useEnumInitializers": "off",
"useBlockStatements": "error",
"useConst": "error",
"useImportType": "error",
"noNonNullAssertion": "off", // TODO: Turn this on ASAP and fix all non-null assertions
"noParameterAssign": "off",
"useExponentiationOperator": "off",
"useDefaultParameterLast": "off", // TODO: Fix spots in the codebase where this flag would be triggered, and then enable
"useSingleVarDeclarator": "off",
"useNodejsImportProtocol": "off",
"useTemplate": "off" // string concatenation is faster: https://stackoverflow.com/questions/29055518/are-es6-template-literals-faster-than-string-concatenation
},
"suspicious": {
"noDoubleEquals": "error",
"noExplicitAny": "off",
"noAssignInExpressions": "off",
"noPrototypeBuiltins": "off",
"noFallthroughSwitchClause": "off",
"noImplicitAnyLet": "info", // TODO: Refactor and make this an error
"noRedeclare": "off", // TODO: Refactor and make this an error
"noGlobalIsNan": "off",
"noAsyncPromiseExecutor": "warn" // TODO: Refactor and make this an error
},
"complexity": {
"noExcessiveCognitiveComplexity": "warn",
"useLiteralKeys": "off",
"noForEach": "off", // Foreach vs for of is not that simple.
"noUselessSwitchCase": "off", // Explicit > Implicit
"noUselessConstructor": "warn", // TODO: Refactor and make this an error
"noBannedTypes": "warn" // TODO: Refactor and make this an error
}
}
},
"javascript": {
"formatter": { "quoteStyle": "double", "arrowParentheses": "asNeeded" }
},
"overrides": [
{
"include": ["test/**/*.test.ts"],
"javascript": { "globals": [] },
"linter": {
"rules": {
"performance": {
"noDelete": "off"
}
}
}
}
]
}

View File

@ -1,5 +1,5 @@
/** /**
* This script creates a test boilerplate file in the appropriate * This script creates a test boilerplate file in the appropriate
* directory based on the type selected. * directory based on the type selected.
* @example npm run create-test * @example npm run create-test
*/ */
@ -31,7 +31,8 @@ async function promptTestType() {
if (typeAnswer.selectedOption === "EXIT") { if (typeAnswer.selectedOption === "EXIT") {
console.log("Exiting..."); console.log("Exiting...");
return process.exit(); return process.exit();
} else if (!typeChoices.includes(typeAnswer.selectedOption)) { }
if (!typeChoices.includes(typeAnswer.selectedOption)) {
console.error(`Please provide a valid type (${typeChoices.join(", ")})!`); console.error(`Please provide a valid type (${typeChoices.join(", ")})!`);
return await promptTestType(); return await promptTestType();
} }
@ -74,29 +75,29 @@ async function runInteractive() {
const fileName = fileNameAnswer.userInput const fileName = fileNameAnswer.userInput
.replace(/-+/g, "_") // Convert kebab-case (dashes) to underscores .replace(/-+/g, "_") // Convert kebab-case (dashes) to underscores
.replace(/([a-z])([A-Z])/g, "$1_$2") // Convert camelCase to snake_case .replace(/([a-z])([A-Z])/g, "$1_$2") // Convert camelCase to snake_case
.replace(/\s+/g, '_') // Replace spaces with underscores .replace(/\s+/g, "_") // Replace spaces with underscores
.toLowerCase(); // Ensure all lowercase .toLowerCase(); // Ensure all lowercase
// Format the description for the test case // Format the description for the test case
const formattedName = fileName.replace(/_/g, " ").replace(/\b\w/g, (char) => char.toUpperCase()); const formattedName = fileName.replace(/_/g, " ").replace(/\b\w/g, char => char.toUpperCase());
// Determine the directory based on the type // Determine the directory based on the type
let dir; let dir;
let description; let description;
switch (type) { switch (type) {
case "move": case "move":
dir = path.join(__dirname, "src", "test", "moves"); dir = path.join(__dirname, "test", "moves");
description = `Moves - ${formattedName}`; description = `Moves - ${formattedName}`;
break; break;
case "ability": case "ability":
dir = path.join(__dirname, "src", "test", "abilities"); dir = path.join(__dirname, "test", "abilities");
description = `Abilities - ${formattedName}`; description = `Abilities - ${formattedName}`;
break; break;
case "item": case "item":
dir = path.join(__dirname, "src", "test", "items"); dir = path.join(__dirname, "test", "items");
description = `Items - ${formattedName}`; description = `Items - ${formattedName}`;
break; break;
case "mystery encounter": case "mystery encounter":
dir = path.join(__dirname, "src", "test", "mystery-encounter", "encounters"); dir = path.join(__dirname, "test", "mystery-encounter", "encounters");
description = `Mystery Encounter - ${formattedName}`; description = `Mystery Encounter - ${formattedName}`;
break; break;
default: default:
@ -108,7 +109,7 @@ async function runInteractive() {
const content = `import { Abilities } from "#enums/abilities"; const content = `import { Abilities } from "#enums/abilities";
import { Moves } from "#enums/moves"; import { Moves } from "#enums/moves";
import { Species } from "#enums/species"; import { Species } from "#enums/species";
import GameManager from "#test/utils/gameManager"; import GameManager from "#test/testUtils/gameManager";
import Phaser from "phaser"; import Phaser from "phaser";
import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest";

View File

@ -10,4 +10,4 @@ for await (const chunk of process.stdin) {
const file = Buffer.concat(inputFile).toString("utf-8"); const file = Buffer.concat(inputFile).toString("utf-8");
const svg = graphviz.dot(file, "svg"); const svg = graphviz.dot(file, "svg");
process.stdout.write(svg); process.stdout.write(svg);

View File

@ -80,8 +80,8 @@ As part of the move selection process, the enemy Pokémon must compute a **targe
A move's UBS and TBS are computed with the respective functions in the `Move` class: A move's UBS and TBS are computed with the respective functions in the `Move` class:
```ts ```ts
getUserBenefitScore(user: Pokemon, target: Pokemon, move: Move): integer; getUserBenefitScore(user: Pokemon, target: Pokemon, move: Move): number;
getTargetBenefitScore(user: Pokemon, target: Pokemon, move: Move): integer; getTargetBenefitScore(user: Pokemon, target: Pokemon, move: Move): number;
``` ```
Logically, these functions are very similar – they add up their respective benefit scores from each of the move's attributes (as determined by `attr.getUserBenefitScore`, and `attr.getTargetBenefitScore`, respectively) and return the total benefit score. However, there are two key functional differences in how the UBS and TBS of a move are handled: Logically, these functions are very similar – they add up their respective benefit scores from each of the move's attributes (as determined by `attr.getUserBenefitScore`, and `attr.getTargetBenefitScore`, respectively) and return the total benefit score. However, there are two key functional differences in how the UBS and TBS of a move are handled:

View File

@ -1,52 +1,43 @@
import tseslint from '@typescript-eslint/eslint-plugin'; import tseslint from "@typescript-eslint/eslint-plugin";
import stylisticTs from '@stylistic/eslint-plugin-ts'; import stylisticTs from "@stylistic/eslint-plugin-ts";
import parser from '@typescript-eslint/parser'; import parser from "@typescript-eslint/parser";
import importX from 'eslint-plugin-import-x'; import importX from "eslint-plugin-import-x";
export default [ export default [
{ {
files: ["src/**/*.{ts,tsx,js,jsx}"], name: "eslint-config",
ignores: ["dist/*", "build/*", "coverage/*", "public/*", ".github/*", "node_modules/*", ".vscode/*"], files: ["src/**/*.{ts,tsx,js,jsx}", "test/**/*.{ts,tsx,js,jsx}"],
languageOptions: { ignores: ["dist/*", "build/*", "coverage/*", "public/*", ".github/*", "node_modules/*", ".vscode/*"],
parser: parser languageOptions: {
}, parser: parser,
plugins: { },
"import-x": importX, plugins: {
'@stylistic/ts': stylisticTs, "import-x": importX,
'@typescript-eslint': tseslint "@stylistic/ts": stylisticTs,
}, "@typescript-eslint": tseslint,
rules: { },
"eqeqeq": ["error", "always"], // Enforces the use of `===` and `!==` instead of `==` and `!=` rules: {
"indent": ["error", 2, { "SwitchCase": 1 }], // Enforces a 2-space indentation, enforces indentation of `case ...:` statements "prefer-const": "error", // Enforces the use of `const` for variables that are never reassigned
"quotes": ["error", "double"], // Enforces the use of double quotes for strings "no-undef": "off", // Disables the rule that disallows the use of undeclared variables (TypeScript handles this)
"no-var": "error", // Disallows the use of `var`, enforcing `let` or `const` instead "no-extra-semi": ["error"], // Disallows unnecessary semicolons for TypeScript-specific syntax
"prefer-const": "error", // Enforces the use of `const` for variables that are never reassigned "import-x/extensions": ["error", "never", { json: "always" }], // Enforces no extension for imports unless json
"no-undef": "off", // Disables the rule that disallows the use of undeclared variables (TypeScript handles this) },
"@typescript-eslint/no-unused-vars": [ "error", { },
"args": "none", // Allows unused function parameters. Useful for functions with specific signatures where not all parameters are always used. {
"ignoreRestSiblings": true // Allows unused variables that are part of a rest property in object destructuring. Useful for excluding certain properties from an object while using the others. name: "eslint-tests",
}], files: ["test/**/**.test.ts"],
"eol-last": ["error", "always"], // Enforces at least one newline at the end of files languageOptions: {
"@stylistic/ts/semi": ["error", "always"], // Requires semicolons for TypeScript-specific syntax parser: parser,
"semi": "off", // Disables the general semi rule for TypeScript files parserOptions: {
"no-extra-semi": ["error"], // Disallows unnecessary semicolons for TypeScript-specific syntax project: ["./tsconfig.json"],
"brace-style": "off", // Note: you must disable the base rule as it can report incorrect errors },
"curly": ["error", "all"], // Enforces the use of curly braces for all control statements },
"@stylistic/ts/brace-style": ["error", "1tbs"], // Enforces the following brace style: https://eslint.style/rules/js/brace-style#_1tbs plugins: {
"no-trailing-spaces": ["error", { // Disallows trailing whitespace at the end of lines "@typescript-eslint": tseslint,
"skipBlankLines": false, // Enforces the rule even on blank lines },
"ignoreComments": false // Enforces the rule on lines containing comments rules: {
}], "@typescript-eslint/no-floating-promises": "error", // Require Promise-like statements to be handled appropriately. - https://typescript-eslint.io/rules/no-floating-promises/
"space-before-blocks": ["error", "always"], // Enforces a space before blocks "@typescript-eslint/no-misused-promises": "error", // Disallow Promises in places not designed to handle them. - https://typescript-eslint.io/rules/no-misused-promises/
"keyword-spacing": ["error", { "before": true, "after": true }], // Enforces spacing before and after keywords },
"comma-spacing": ["error", { "before": false, "after": true }], // Enforces spacing after commas },
"import-x/extensions": ["error", "never", { "json": "always" }], // Enforces no extension for imports unless json ];
"array-bracket-spacing": ["error", "always", { "objectsInArrays": false, "arraysInArrays": false }], // Enforces consistent spacing inside array brackets
"object-curly-spacing": ["error", "always", { "arraysInObjects": false, "objectsInObjects": false }], // Enforces consistent spacing inside braces of object literals, destructuring assignments, and import/export specifiers
"computed-property-spacing": ["error", "never" ], // Enforces consistent spacing inside computed property brackets
"space-infix-ops": ["error", { "int32Hint": false }], // Enforces spacing around infix operators
"no-multiple-empty-lines": ["error", { "max": 2, "maxEOF": 1, "maxBOF": 0 }], // Disallows multiple empty lines
"@typescript-eslint/consistent-type-imports": "error", // Enforces type-only imports wherever possible
}
}
]

190
index.css
View File

@ -11,7 +11,7 @@ html {
body { body {
margin: 0; margin: 0;
display:flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
background: #484050; background: #484050;
@ -49,16 +49,17 @@ body {
@media (pointer: coarse) { @media (pointer: coarse) {
/* hasTouchscreen() && !isTouchControlsEnabled */ /* hasTouchscreen() && !isTouchControlsEnabled */
body:has(> #touchControls[class=visible]) #app { body:has(> #touchControls[class="visible"]) #app {
align-items: start; align-items: start;
} }
body:has(> #touchControls[class=visible]) #app > div:first-child { body:has(> #touchControls[class="visible"]) #app > div:first-child {
transform-origin: top !important; transform-origin: top !important;
} }
} }
#layout:fullscreen #dpad, #layout:fullscreen { #layout:fullscreen #dpad,
#layout:fullscreen {
bottom: 6rem; bottom: 6rem;
} }
@ -76,7 +77,6 @@ input {
display: none !important; display: none !important;
} }
input:-internal-autofill-selected { input:-internal-autofill-selected {
-webkit-background-clip: text; -webkit-background-clip: text;
background-clip: text; background-clip: text;
@ -91,18 +91,33 @@ input:-internal-autofill-selected {
--controls-padding: 1rem; --controls-padding: 1rem;
--controls-size-with-padding: calc(var(--controls-size) + var(--controls-padding)); --controls-size-with-padding: calc(
--controls-size-with-wide-padding: calc(var(--controls-size) *1.2 + var(--controls-padding)); var(--controls-size) +
var(--controls-padding)
);
--controls-size-with-wide-padding: calc(
var(--controls-size) *
1.2 +
var(--controls-padding)
);
--control-group-extra-size: calc(var(--controls-size) * 0.8); --control-group-extra-size: calc(var(--controls-size) * 0.8);
--control-group-extra-wide-size: calc(var(--controls-size) * 1.2); --control-group-extra-wide-size: calc(var(--controls-size) * 1.2);
--control-group-extra-2-offset: calc(var(--controls-size-with-padding) + (var(--controls-size) - var(--control-group-extra-size)) / 2); --control-group-extra-2-offset: calc(
--control-group-extra-1-offset: calc(var(--controls-padding) + (var(--controls-size) - var(--control-group-extra-size)) / 2); var(--controls-size-with-padding) +
(var(--controls-size) - var(--control-group-extra-size)) /
2
);
--control-group-extra-1-offset: calc(
var(--controls-padding) +
(var(--controls-size) - var(--control-group-extra-size)) /
2
);
--small-control-size: calc(var(--controls-size) / 3); --small-control-size: calc(var(--controls-size) / 3);
--rect-control-size: calc(var(--controls-size) * 0.74); --rect-control-size: calc(var(--controls-size) * 0.74);
font-family: 'emerald'; font-family: "emerald";
font-size: var(--controls-size); font-size: var(--controls-size);
text-shadow: var(--color-dark) var(--text-shadow-size) var(--text-shadow-size); text-shadow: var(--color-dark) var(--text-shadow-size) var(--text-shadow-size);
color: var(--color-light); color: var(--color-light);
@ -146,32 +161,69 @@ input:-internal-autofill-selected {
/* Hide buttons on specific UIs */ /* Hide buttons on specific UIs */
/* Show #apadPreviousTab and #apadNextTab only in settings, except in touch configuration panel */ /* Show #apadPreviousTab and #apadNextTab only in settings, except in touch configuration panel */
#touchControls:not([data-ui-mode^='SETTINGS']) #apadPreviousTab, #touchControls:not([data-ui-mode^="SETTINGS"]) #apadPreviousTab,
#touchControls:not([data-ui-mode^='SETTINGS']) #apadNextTab, #touchControls:not([data-ui-mode^="SETTINGS"]) #apadNextTab,
#touchControls:is(.config-mode) #apadPreviousTab, #touchControls:is(.config-mode) #apadPreviousTab,
#touchControls:is(.config-mode) #apadNextTab { #touchControls:is(.config-mode) #apadNextTab {
display: none; display: none;
} }
/* Show #apadInfo only in battle */ /* Show #apadInfo only in battle */
#touchControls:not([data-ui-mode='COMMAND']):not([data-ui-mode='FIGHT']):not([data-ui-mode='BALL']):not([data-ui-mode='TARGET_SELECT']) #apadInfo { #touchControls:not([data-ui-mode="COMMAND"]):not([data-ui-mode="FIGHT"]):not(
[data-ui-mode="BALL"]
):not([data-ui-mode="TARGET_SELECT"])
#apadInfo {
display: none; display: none;
} }
/* Show #apadStats only in battle and shop */ /* Show #apadStats only in battle and shop */
#touchControls:not([data-ui-mode='COMMAND']):not([data-ui-mode='FIGHT']):not([data-ui-mode='BALL']):not([data-ui-mode='TARGET_SELECT']):not([data-ui-mode='MODIFIER_SELECT']) #apadStats { #touchControls:not([data-ui-mode="COMMAND"]):not([data-ui-mode="FIGHT"]):not(
[data-ui-mode="BALL"]
):not([data-ui-mode="TARGET_SELECT"]):not([data-ui-mode="MODIFIER_SELECT"])
#apadStats {
display: none; display: none;
} }
/* Show cycle buttons only on STARTER_SELECT and on touch configuration panel */ /* Show cycle buttons only on STARTER_SELECT and on touch configuration panel */
#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT']) #apadOpenFilters, #touchControls:not(.config-mode):not(
#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT'], [data-ui-mode='RUN_INFO']) #apadCycleForm, [data-ui-mode="STARTER_SELECT"],
#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT'], [data-ui-mode='RUN_INFO']) #apadCycleShiny, [data-ui-mode="POKEDEX"],
#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT']) #apadCycleNature, [data-ui-mode="POKEDEX_PAGE"]
#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT'], [data-ui-mode='RUN_INFO']) #apadCycleAbility, )
#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT']) #apadCycleGender, #apadOpenFilters,
#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT']) #apadCycleVariant { #touchControls:not(.config-mode):not(
display: none; [data-ui-mode="STARTER_SELECT"],
[data-ui-mode="POKEDEX"],
[data-ui-mode="POKEDEX_PAGE"],
[data-ui-mode="RUN_INFO"]
)
#apadCycleForm,
#touchControls:not(.config-mode):not(
[data-ui-mode="STARTER_SELECT"],
[data-ui-mode="POKEDEX"],
[data-ui-mode="POKEDEX_PAGE"],
[data-ui-mode="RUN_INFO"]
)
#apadCycleShiny,
#touchControls:not(.config-mode):not([data-ui-mode="STARTER_SELECT"])
#apadCycleNature,
#touchControls:not(.config-mode):not(
[data-ui-mode="STARTER_SELECT"],
[data-ui-mode="POKEDEX_PAGE"],
[data-ui-mode="RUN_INFO"]
)
#apadCycleAbility,
#touchControls:not(.config-mode):not(
[data-ui-mode="STARTER_SELECT"],
[data-ui-mode="POKEDEX_PAGE"]
)
#apadCycleGender,
#touchControls:not(.config-mode):not(
[data-ui-mode="STARTER_SELECT"],
[data-ui-mode="POKEDEX"]
)
#apadCycleTera {
display: none;
} }
/* Configuration toolbar */ /* Configuration toolbar */
@ -217,16 +269,18 @@ input:-internal-autofill-selected {
font-size: var(--small-control-size); font-size: var(--small-control-size);
border-radius: 8px; border-radius: 8px;
padding: 2px 8px; padding: 2px 8px;
text-shadow: var(--color-dark) calc(var(--text-shadow-size) / 3) calc(var(--text-shadow-size) / 3); text-shadow: var(--color-dark) calc(var(--text-shadow-size) / 3)
calc(var(--text-shadow-size) / 3);
} }
#configToolbar .button:active { #configToolbar .button:active {
opacity: var(--touch-control-opacity) opacity: var(--touch-control-opacity);
} }
#configToolbar .orientation-label { #configToolbar .orientation-label {
font-size: var(--small-control-size); font-size: var(--small-control-size);
text-shadow: var(--color-dark) calc(var(--text-shadow-size) / 3) calc(var(--text-shadow-size) / 3); text-shadow: var(--color-dark) calc(var(--text-shadow-size) / 3)
calc(var(--text-shadow-size) / 3);
} }
/* dpad */ /* dpad */
@ -270,7 +324,8 @@ input:-internal-autofill-selected {
.apad-small > .apad-label { .apad-small > .apad-label {
font-size: var(--small-control-size); font-size: var(--small-control-size);
text-shadow: var(--color-dark) calc(var(--text-shadow-size) / 3) calc(var(--text-shadow-size) / 3); text-shadow: var(--color-dark) calc(var(--text-shadow-size) / 3)
calc(var(--text-shadow-size) / 3);
} }
.apad-rectangle { .apad-rectangle {
@ -320,7 +375,8 @@ input:-internal-autofill-selected {
/* Layout */ /* Layout */
#layout:fullscreen #dpad, #layout:fullscreen #apad { #layout:fullscreen #dpad,
#layout:fullscreen #apad {
bottom: 6rem; bottom: 6rem;
} }
@ -353,55 +409,55 @@ a {
/* Firefox old*/ /* Firefox old*/
@-moz-keyframes blink { @-moz-keyframes blink {
0% { 0% {
opacity:1; opacity: 1;
} }
50% { 50% {
opacity:0; opacity: 0;
} }
100% { 100% {
opacity:1; opacity: 1;
} }
} }
@-webkit-keyframes blink { @-webkit-keyframes blink {
0% { 0% {
opacity:1; opacity: 1;
} }
50% { 50% {
opacity:0; opacity: 0;
} }
100% { 100% {
opacity:1; opacity: 1;
} }
} }
/* IE */ /* IE */
@-ms-keyframes blink { @-ms-keyframes blink {
0% { 0% {
opacity:1; opacity: 1;
} }
50% { 50% {
opacity:0; opacity: 0;
} }
100% { 100% {
opacity:1; opacity: 1;
} }
} }
/* Opera and prob css3 final iteration */ /* Opera and prob css3 final iteration */
@keyframes blink { @keyframes blink {
0% { 0% {
opacity:1; opacity: 1;
} }
50% { 50% {
opacity:0; opacity: 0;
} }
100% { 100% {
opacity:1; opacity: 1;
} }
} }
.blink-image { .blink-image {
-moz-animation: blink normal 4s infinite ease-in-out; /* Firefox */ -moz-animation: blink normal 4s infinite ease-in-out; /* Firefox */
-webkit-animation: blink normal 4s infinite ease-in-out; /* Webkit */ -webkit-animation: blink normal 4s infinite ease-in-out; /* Webkit */
-ms-animation: blink normal 4s infinite ease-in-out; /* IE */ -ms-animation: blink normal 4s infinite ease-in-out; /* IE */
animation: blink normal 4s infinite ease-in-out; /* Opera and prob css3 final iteration */ animation: blink normal 4s infinite ease-in-out; /* Opera and prob css3 final iteration */
} }

View File

@ -129,11 +129,11 @@
<div id="apadCycleNature" class="apad-button apad-square apad-small" data-key="CYCLE_NATURE"> <div id="apadCycleNature" class="apad-button apad-square apad-small" data-key="CYCLE_NATURE">
<span class="apad-label">N</span> <span class="apad-label">N</span>
</div> </div>
<div id="apadCycleVariant" class="apad-button apad-square apad-small" data-key="V"> <div id="apadCycleTera" class="apad-button apad-square apad-small" data-key="CYCLE_TERA">
<span class="apad-label">V</span> <span class="apad-label">V</span>
</div> </div>
<!-- buttons to display battle-specific information --> <!-- buttons to display battle-specific information -->
<div id="apadInfo" class="apad-button apad-rectangle apad-small" data-key="V"> <div id="apadInfo" class="apad-button apad-rectangle apad-small" data-key="CYCLE_TERA">
<span class="apad-label">V</span> <span class="apad-label">V</span>
</div> </div>
<div id="apadStats" class="apad-button apad-rectangle apad-small" data-key="STATS"> <div id="apadStats" class="apad-button apad-rectangle apad-small" data-key="STATS">

View File

@ -1,9 +1,9 @@
pre-commit: pre-commit:
parallel: true parallel: true
commands: commands:
eslint: biome-lint:
glob: "*.{js,jsx,ts,tsx}" glob: "*.{js,jsx,ts,tsx}"
run: npx eslint --fix {staged_files} run: npx @biomejs/biome check --write --reporter=summary {staged_files} --no-errors-on-unmatched
stage_fixed: true stage_fixed: true
skip: skip:
- merge - merge
@ -11,9 +11,9 @@ pre-commit:
pre-push: pre-push:
commands: commands:
eslint: biome-lint:
glob: "*.{js,ts,jsx,tsx}" glob: "*.{js,ts,jsx,tsx}"
run: npx eslint --fix {push_files} run: npx @biomejs/biome check --write --reporter=summary {push_files} --no-errors-on-unmatched
post-merge: post-merge:
commands: commands:

14296
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,74 +1,71 @@
{ {
"name": "pokemon-rogue-battle", "name": "pokemon-rogue-battle",
"private": true, "private": true,
"version": "1.5.2", "version": "1.7.7",
"type": "module", "type": "module",
"scripts": { "scripts": {
"start": "vite", "start": "vite",
"start:dev": "vite --mode development", "start:dev": "vite --mode development",
"build": "vite build", "build": "vite build",
"build:beta": "vite build --mode beta", "build:beta": "vite build --mode beta",
"preview": "vite preview", "preview": "vite preview",
"test": "vitest run --project pre && vitest run --project main", "test": "vitest run --project pre && vitest run --project main",
"test:cov": "vitest run --project pre && vitest run --project main --coverage", "test:cov": "vitest run --project pre && vitest run --project main --coverage",
"test:watch": "vitest run --project pre && vitest watch --project main --coverage", "test:watch": "vitest run --project pre && vitest watch --project main --coverage",
"test:silent": "vitest run --project pre && vitest run --project main --silent", "test:silent": "vitest run --project pre && vitest run --project main --silent",
"typecheck": "tsc --noEmit", "typecheck": "tsc --noEmit",
"eslint": "eslint --fix .", "eslint": "eslint --fix .",
"eslint-ci": "eslint .", "eslint-ci": "eslint .",
"docs": "typedoc", "biome": "biome check --write --changed --no-errors-on-unmatched",
"depcruise": "depcruise src", "biome-ci": "biome ci --diagnostic-level=error --reporter=github --changed --no-errors-on-unmatched",
"depcruise:graph": "depcruise src --output-type dot | node dependency-graph.js > dependency-graph.svg", "docs": "typedoc",
"create-test": "node ./create-test-boilerplate.js", "depcruise": "depcruise src",
"postinstall": "npx lefthook install && npx lefthook run post-merge", "depcruise:graph": "depcruise src --output-type dot | node dependency-graph.js > dependency-graph.svg",
"update-version:patch": "npm version patch --force --no-git-tag-version", "create-test": "node ./create-test-boilerplate.js",
"update-version:minor": "npm version minor --force --no-git-tag-version", "postinstall": "npx lefthook install && npx lefthook run post-merge",
"update-locales:remote": "git submodule update --progress --init --recursive --force --remote" "update-version:patch": "npm version patch --force --no-git-tag-version",
}, "update-version:minor": "npm version minor --force --no-git-tag-version",
"devDependencies": { "update-locales:remote": "git submodule update --progress --init --recursive --force --remote"
"@eslint/js": "^9.3.0", },
"@hpcc-js/wasm": "^2.18.0", "devDependencies": {
"@stylistic/eslint-plugin-ts": "^2.6.0-beta.0", "@biomejs/biome": "1.9.4",
"@types/jsdom": "^21.1.7", "@eslint/js": "^9.3.0",
"@types/node": "^20.12.13", "@hpcc-js/wasm": "^2.18.0",
"@typescript-eslint/eslint-plugin": "^8.0.0-alpha.54", "@stylistic/eslint-plugin-ts": "^2.6.0-beta.0",
"@typescript-eslint/parser": "^8.0.0-alpha.54", "@types/jsdom": "^21.1.7",
"@vitest/coverage-istanbul": "^2.0.4", "@types/node": "^20.12.13",
"dependency-cruiser": "^16.3.10", "@typescript-eslint/eslint-plugin": "^8.0.0-alpha.54",
"eslint": "^9.7.0", "@typescript-eslint/parser": "^8.0.0-alpha.54",
"eslint-plugin-import-x": "^4.2.1", "@vitest/coverage-istanbul": "^2.1.9",
"inquirer": "^11.0.2", "dependency-cruiser": "^16.3.10",
"jsdom": "^24.0.0", "eslint": "^9.7.0",
"lefthook": "^1.6.12", "eslint-plugin-import-x": "^4.2.1",
"msw": "^2.4.9", "inquirer": "^11.0.2",
"phaser3spectorjs": "^0.0.8", "jsdom": "^24.0.0",
"typedoc": "^0.26.4", "lefthook": "^1.6.12",
"typescript": "^5.5.3", "msw": "^2.4.9",
"typescript-eslint": "^8.0.0-alpha.54", "phaser3spectorjs": "^0.0.8",
"vite": "^5.4.8", "typedoc": "^0.26.4",
"vite-tsconfig-paths": "^4.3.2", "typescript": "^5.5.3",
"vitest": "^2.0.4", "typescript-eslint": "^8.0.0-alpha.54",
"vitest-canvas-mock": "^0.3.3" "vite": "^5.4.14",
}, "vite-tsconfig-paths": "^4.3.2",
"dependencies": { "vitest": "^2.1.9",
"@material/material-color-utilities": "^0.2.7", "vitest-canvas-mock": "^0.3.3"
"crypto-js": "^4.2.0", },
"i18next": "^23.11.1", "dependencies": {
"i18next-browser-languagedetector": "^7.2.1", "@material/material-color-utilities": "^0.2.7",
"i18next-http-backend": "^2.6.1", "crypto-js": "^4.2.0",
"i18next-korean-postposition-processor": "^1.0.0", "i18next": "^23.11.1",
"json-stable-stringify": "^1.1.0", "i18next-browser-languagedetector": "^7.2.1",
"jszip": "^3.10.1", "i18next-http-backend": "^2.6.1",
"phaser": "^3.70.0", "i18next-korean-postposition-processor": "^1.0.0",
"phaser3-rex-plugins": "^1.1.84" "json-stable-stringify": "^1.1.0",
}, "jszip": "^3.10.1",
"engines": { "phaser": "^3.70.0",
"node": ">=20.0.0" "phaser3-rex-plugins": "^1.1.84"
}, },
"imports": { "engines": {
"#enums/*": "./enums/*", "node": ">=20.0.0"
"#app": "./src/main.js", }
"#app/*": "./src/*",
"#test/*": "./src/test/*"
}
} }

Binary file not shown.

View File

@ -0,0 +1,774 @@
{
"graphic": "terastallize",
"frames": [
[
{
"x": 0,
"y": 0,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 0,
"graphicFrame": 0,
"opacity": 255,
"locked": true,
"priority": 1,
"focus": 2
},
{
"x": 128,
"y": -64,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 1,
"graphicFrame": 0,
"opacity": 255,
"locked": true,
"priority": 1,
"focus": 1
},
{
"x": 0,
"y": -20,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 2,
"graphicFrame": 0,
"opacity": 150,
"priority": 1,
"focus": 2
}
],
[
{
"x": 0,
"y": 0,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 0,
"graphicFrame": 0,
"opacity": 255,
"locked": true,
"priority": 1,
"focus": 2
},
{
"x": 128,
"y": -64,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 1,
"graphicFrame": 0,
"opacity": 255,
"locked": true,
"priority": 1,
"focus": 1
},
{
"x": 0,
"y": -20,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 2,
"graphicFrame": 0,
"opacity": 225,
"priority": 1,
"focus": 2
}
],
[
{
"x": 0,
"y": 0,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 0,
"graphicFrame": 0,
"opacity": 255,
"locked": true,
"priority": 1,
"focus": 2
},
{
"x": 128,
"y": -64,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 1,
"graphicFrame": 0,
"opacity": 255,
"locked": true,
"priority": 1,
"focus": 1
},
{
"x": 0,
"y": -20,
"zoomX": 70,
"zoomY": 70,
"visible": true,
"target": 2,
"graphicFrame": 1,
"opacity": 255,
"priority": 1,
"focus": 2
}
],
[
{
"x": 0,
"y": 0,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 0,
"graphicFrame": 0,
"opacity": 255,
"locked": true,
"priority": 1,
"focus": 2
},
{
"x": 128,
"y": -64,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 1,
"graphicFrame": 0,
"opacity": 255,
"locked": true,
"priority": 1,
"focus": 1
},
{
"x": 0,
"y": -20,
"zoomX": 70,
"zoomY": 70,
"visible": true,
"target": 2,
"graphicFrame": 1,
"opacity": 255,
"priority": 1,
"focus": 2
}
],
[
{
"x": 0,
"y": 0,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 0,
"graphicFrame": 0,
"opacity": 255,
"locked": true,
"priority": 1,
"focus": 2
},
{
"x": 128,
"y": -64,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 1,
"graphicFrame": 0,
"opacity": 255,
"locked": true,
"priority": 1,
"focus": 1
},
{
"x": 0,
"y": -20,
"zoomX": 90,
"zoomY": 90,
"visible": true,
"target": 2,
"graphicFrame": 1,
"opacity": 255,
"priority": 1,
"focus": 2
}
],
[
{
"x": 0,
"y": 0,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 0,
"graphicFrame": 0,
"opacity": 255,
"locked": true,
"priority": 1,
"focus": 2
},
{
"x": 128,
"y": -64,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 1,
"graphicFrame": 0,
"opacity": 255,
"locked": true,
"priority": 1,
"focus": 1
},
{
"x": 0,
"y": -20,
"zoomX": 90,
"zoomY": 90,
"visible": true,
"target": 2,
"graphicFrame": 1,
"opacity": 255,
"priority": 1,
"focus": 2
}
],
[
{
"x": 0,
"y": 0,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 0,
"graphicFrame": 0,
"opacity": 255,
"locked": true,
"priority": 1,
"focus": 2
},
{
"x": 128,
"y": -64,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 1,
"graphicFrame": 0,
"opacity": 255,
"locked": true,
"priority": 1,
"focus": 1
},
{
"x": 0,
"y": -20,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 2,
"graphicFrame": 1,
"opacity": 255,
"priority": 1,
"focus": 2
}
],
[
{
"x": 0,
"y": 0,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 0,
"graphicFrame": 0,
"opacity": 255,
"locked": true,
"priority": 1,
"focus": 2
},
{
"x": 128,
"y": -64,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 1,
"graphicFrame": 0,
"opacity": 255,
"locked": true,
"priority": 1,
"focus": 1
},
{
"x": 0,
"y": -20,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 2,
"graphicFrame": 1,
"opacity": 255,
"priority": 1,
"focus": 2
}
],
[
{
"x": 0,
"y": 0,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 0,
"graphicFrame": 0,
"opacity": 255,
"locked": true,
"priority": 1,
"focus": 2
},
{
"x": 128,
"y": -64,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 1,
"graphicFrame": 0,
"opacity": 255,
"locked": true,
"priority": 1,
"focus": 1
},
{
"x": 0,
"y": -20,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 2,
"graphicFrame": 1,
"opacity": 255,
"priority": 1,
"focus": 2
}
],
[
{
"x": 0,
"y": 0,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 0,
"graphicFrame": 0,
"opacity": 255,
"locked": true,
"priority": 1,
"focus": 2
},
{
"x": 128,
"y": -64,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 1,
"graphicFrame": 0,
"opacity": 255,
"locked": true,
"priority": 1,
"focus": 1
},
{
"x": 0,
"y": -20,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 2,
"graphicFrame": 1,
"opacity": 200,
"priority": 1,
"focus": 2
}
],
[
{
"x": 0,
"y": 0,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 0,
"graphicFrame": 0,
"opacity": 255,
"tone": [
100,
100,
100,
0
],
"locked": true,
"priority": 1,
"focus": 2
},
{
"x": 128,
"y": -64,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 1,
"graphicFrame": 0,
"opacity": 255,
"locked": true,
"priority": 1,
"focus": 1
},
{
"x": 0,
"y": -20,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 2,
"graphicFrame": 1,
"opacity": 100,
"priority": 1,
"focus": 2
}
],
[
{
"x": 0,
"y": 0,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 0,
"graphicFrame": 0,
"opacity": 255,
"tone": [
100,
100,
100,
0
],
"locked": true,
"priority": 1,
"focus": 2
},
{
"x": 128,
"y": -64,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 1,
"graphicFrame": 0,
"opacity": 255,
"locked": true,
"priority": 1,
"focus": 1
},
{
"x": 0,
"y": -20,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 2,
"graphicFrame": 1,
"opacity": 100,
"priority": 1,
"focus": 2
}
],
[
{
"x": 0,
"y": 0,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 0,
"graphicFrame": 0,
"opacity": 255,
"tone": [
100,
100,
100,
0
],
"locked": true,
"priority": 1,
"focus": 2
},
{
"x": 128,
"y": -64,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 1,
"graphicFrame": 0,
"opacity": 255,
"locked": true,
"priority": 1,
"focus": 1
},
{
"x": 0,
"y": -20,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 2,
"graphicFrame": 1,
"opacity": 60,
"priority": 1,
"focus": 2
}
],
[
{
"x": 0,
"y": 0,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 0,
"graphicFrame": 0,
"opacity": 255,
"tone": [
100,
100,
100,
0
],
"locked": true,
"priority": 1,
"focus": 2
},
{
"x": 128,
"y": -64,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 1,
"graphicFrame": 0,
"opacity": 255,
"locked": true,
"priority": 1,
"focus": 1
},
{
"x": 0,
"y": -20,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 2,
"graphicFrame": 1,
"opacity": 60,
"priority": 1,
"focus": 2
}
],
[
{
"x": 0,
"y": 0,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 0,
"graphicFrame": 0,
"opacity": 255,
"tone": [
100,
100,
100,
0
],
"locked": true,
"priority": 1,
"focus": 2
},
{
"x": 128,
"y": -64,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 1,
"graphicFrame": 0,
"opacity": 255,
"locked": true,
"priority": 1,
"focus": 1
},
{
"x": 0,
"y": -20,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 2,
"graphicFrame": 1,
"opacity": 60,
"priority": 1,
"focus": 2
}
],
[
{
"x": 0,
"y": 0,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 0,
"graphicFrame": 0,
"opacity": 255,
"tone": [
100,
100,
100,
0
],
"locked": true,
"priority": 1,
"focus": 2
},
{
"x": 128,
"y": -64,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 1,
"graphicFrame": 0,
"opacity": 255,
"locked": true,
"priority": 1,
"focus": 1
}
],
[
{
"x": 0,
"y": 0,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 0,
"graphicFrame": 0,
"opacity": 255,
"tone": [
255,
255,
255,
255
],
"locked": true,
"priority": 1,
"focus": 2
},
{
"x": 128,
"y": -64,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 1,
"graphicFrame": 0,
"opacity": 255,
"locked": true,
"priority": 1,
"focus": 1
}
],
[
{
"x": 0,
"y": 0,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 0,
"graphicFrame": 0,
"opacity": 255,
"tone": [
255,
255,
255,
0
],
"locked": true,
"priority": 1,
"focus": 2
},
{
"x": 128,
"y": -64,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 1,
"graphicFrame": 0,
"opacity": 255,
"locked": true,
"priority": 1,
"focus": 1
}
],
[
{
"x": 0,
"y": 0,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 0,
"graphicFrame": 0,
"opacity": 255,
"tone": [
255,
255,
255,
255
],
"locked": true,
"priority": 1,
"focus": 2
},
{
"x": 128,
"y": -64,
"zoomX": 100,
"zoomY": 100,
"visible": true,
"target": 1,
"graphicFrame": 0,
"opacity": 255,
"locked": true,
"priority": 1,
"focus": 1
}
]
],
"frameTimedEvents": {},
"position": 4,
"hue": 0
}

View File

@ -183,6 +183,8 @@
"487-origin", "487-origin",
"531-mega", "531-mega",
"531-mega", "531-mega",
"569-gigantamax",
"569-gigantamax",
"6-mega", "6-mega",
"6-mega", "6-mega",
"6-mega-x", "6-mega-x",
@ -201,6 +203,8 @@
"6211", "6211",
"6215", "6215",
"6215", "6215",
"6215f",
"6215f",
"65-mega", "65-mega",
"65-mega", "65-mega",
"650", "650",
@ -259,10 +263,10 @@
"666-fancy", "666-fancy",
"666-garden", "666-garden",
"666-garden", "666-garden",
"666-high", "666-high-plains",
"666-high", "666-high-plains",
"666-icy", "666-icy-snow",
"666-icy", "666-icy-snow",
"666-jungle", "666-jungle",
"666-jungle", "666-jungle",
"666-marine", "666-marine",
@ -275,8 +279,8 @@
"666-monsoon", "666-monsoon",
"666-ocean", "666-ocean",
"666-ocean", "666-ocean",
"666-poke", "666-poke-ball",
"666-poke", "666-poke-ball",
"666-polar", "666-polar",
"666-polar", "666-polar",
"666-river", "666-river",
@ -291,8 +295,8 @@
"666-tundra", "666-tundra",
"667", "667",
"667", "667",
"668-female", "668f",
"668-female", "668f",
"668", "668",
"668", "668",
"669-blue", "669-blue",
@ -337,8 +341,6 @@
"6724", "6724",
"673", "673",
"673", "673",
"674",
"674",
"675", "675",
"675", "675",
"676", "676",
@ -381,16 +383,12 @@
"692", "692",
"693", "693",
"693", "693",
"694",
"694",
"695", "695",
"695", "695",
"696", "696",
"696", "696",
"697", "697",
"697", "697",
"698",
"698",
"699", "699",
"699", "699",
"700", "700",
@ -399,18 +397,12 @@
"701", "701",
"702", "702",
"702", "702",
"703",
"703",
"704", "704",
"704", "704",
"705", "705",
"705", "705",
"706", "706",
"706", "706",
"707",
"707",
"708",
"708",
"709", "709",
"709", "709",
"710", "710",
@ -421,8 +413,6 @@
"712", "712",
"713", "713",
"713", "713",
"714",
"714",
"715", "715",
"715", "715",
"716-active", "716-active",
@ -431,16 +421,10 @@
"716-neutral", "716-neutral",
"717", "717",
"717", "717",
"718-10",
"718-10",
"718-complete", "718-complete",
"718-complete", "718-complete",
"718",
"718",
"719-mega", "719-mega",
"719-mega", "719-mega",
"719",
"719",
"720-unbound", "720-unbound",
"720-unbound", "720-unbound",
"720", "720",
@ -711,6 +695,8 @@
"814", "814",
"815", "815",
"815", "815",
"815-gigantamax",
"815-gigantamax",
"816", "816",
"816", "816",
"817", "817",
@ -761,6 +747,8 @@
"838", "838",
"839", "839",
"839", "839",
"839-gigantamax",
"839-gigantamax",
"840", "840",
"840", "840",
"841", "841",
@ -1085,8 +1073,6 @@
"978-droopy", "978-droopy",
"978-stretchy", "978-stretchy",
"978-stretchy", "978-stretchy",
"979",
"979",
"980", "980",
"980", "980",
"981", "981",
@ -1315,6 +1301,8 @@
"487b-origin", "487b-origin",
"531b-mega", "531b-mega",
"531b-mega", "531b-mega",
"569b-gigantamax",
"569b-gigantamax",
"6b-mega", "6b-mega",
"6b-mega", "6b-mega",
"6b-mega-x", "6b-mega-x",
@ -1333,6 +1321,8 @@
"6211b", "6211b",
"6215b", "6215b",
"6215b", "6215b",
"6215bf",
"6215bf",
"65b-mega", "65b-mega",
"65b-mega", "65b-mega",
"650b", "650b",
@ -1391,10 +1381,10 @@
"666b-fancy", "666b-fancy",
"666b-garden", "666b-garden",
"666b-garden", "666b-garden",
"666b-high", "666b-high-plains",
"666b-high", "666b-high-plains",
"666b-icy", "666b-icy-snow",
"666b-icy", "666b-icy-snow",
"666b-jungle", "666b-jungle",
"666b-jungle", "666b-jungle",
"666b-marine", "666b-marine",
@ -1407,8 +1397,8 @@
"666b-monsoon", "666b-monsoon",
"666b-ocean", "666b-ocean",
"666b-ocean", "666b-ocean",
"666b-poke", "666b-poke-ball",
"666b-poke", "666b-poke-ball",
"666b-polar", "666b-polar",
"666b-polar", "666b-polar",
"666b-river", "666b-river",
@ -1423,8 +1413,8 @@
"666b-tundra", "666b-tundra",
"667b", "667b",
"667b", "667b",
"668b-female", "668bf",
"668b-female", "668bf",
"668b", "668b",
"668b", "668b",
"669b-blue", "669b-blue",
@ -1469,8 +1459,6 @@
"6724b", "6724b",
"673b", "673b",
"673b", "673b",
"674b",
"674b",
"675b", "675b",
"675b", "675b",
"676b", "676b",
@ -1513,16 +1501,12 @@
"692b", "692b",
"693b", "693b",
"693b", "693b",
"694b",
"694b",
"695b", "695b",
"695b", "695b",
"696b", "696b",
"696b", "696b",
"697b", "697b",
"697b", "697b",
"698b",
"698b",
"699b", "699b",
"699b", "699b",
"700b", "700b",
@ -1531,18 +1515,12 @@
"701b", "701b",
"702b", "702b",
"702b", "702b",
"703b",
"703b",
"704b", "704b",
"704b", "704b",
"705b", "705b",
"705b", "705b",
"706b", "706b",
"706b", "706b",
"707b",
"707b",
"708b",
"708b",
"709b", "709b",
"709b", "709b",
"710b", "710b",
@ -1553,8 +1531,6 @@
"712b", "712b",
"713b", "713b",
"713b", "713b",
"714b",
"714b",
"715b", "715b",
"715b", "715b",
"716b-active", "716b-active",
@ -1563,16 +1539,10 @@
"716b-neutral", "716b-neutral",
"717b", "717b",
"717b", "717b",
"718b-10",
"718b-10",
"718b-complete", "718b-complete",
"718b-complete", "718b-complete",
"718b",
"718b",
"719b-mega", "719b-mega",
"719b-mega", "719b-mega",
"719b",
"719b",
"720b-unbound", "720b-unbound",
"720b-unbound", "720b-unbound",
"720b", "720b",
@ -1843,6 +1813,8 @@
"814b", "814b",
"815b", "815b",
"815b", "815b",
"815b-gigantamax",
"815b-gigantamax",
"816b", "816b",
"816b", "816b",
"817b", "817b",
@ -1893,6 +1865,8 @@
"838b", "838b",
"839b", "839b",
"839b", "839b",
"839b-gigantamax",
"839b-gigantamax",
"840b", "840b",
"840b", "840b",
"841b", "841b",
@ -2219,8 +2193,6 @@
"978b-droopy", "978b-droopy",
"978b-stretchy", "978b-stretchy",
"978b-stretchy", "978b-stretchy",
"979b",
"979b",
"980b", "980b",
"980b", "980b",
"981b", "981b",
@ -2449,6 +2421,8 @@
"487sb-origin", "487sb-origin",
"531sb-mega", "531sb-mega",
"531sb-mega", "531sb-mega",
"569sb-gigantamax",
"569sb-gigantamax",
"6sb-mega", "6sb-mega",
"6sb-mega", "6sb-mega",
"6sb-mega-x", "6sb-mega-x",
@ -2467,6 +2441,8 @@
"6211sb", "6211sb",
"6215sb", "6215sb",
"6215sb", "6215sb",
"6215sbf",
"6215sbf",
"65sb-mega", "65sb-mega",
"65sb-mega", "65sb-mega",
"650sb", "650sb",
@ -2525,10 +2501,10 @@
"666sb-fancy", "666sb-fancy",
"666sb-garden", "666sb-garden",
"666sb-garden", "666sb-garden",
"666sb-high", "666sb-high-plains",
"666sb-high", "666sb-high-plains",
"666sb-icy", "666sb-icy-snow",
"666sb-icy", "666sb-icy-snow",
"666sb-jungle", "666sb-jungle",
"666sb-jungle", "666sb-jungle",
"666sb-marine", "666sb-marine",
@ -2541,8 +2517,8 @@
"666sb-monsoon", "666sb-monsoon",
"666sb-ocean", "666sb-ocean",
"666sb-ocean", "666sb-ocean",
"666sb-poke", "666sb-poke-ball",
"666sb-poke", "666sb-poke-ball",
"666sb-polar", "666sb-polar",
"666sb-polar", "666sb-polar",
"666sb-river", "666sb-river",
@ -2559,6 +2535,8 @@
"667sb", "667sb",
"668sb", "668sb",
"668sb", "668sb",
"668sbf",
"668sbf",
"669sb-blue", "669sb-blue",
"669sb-blue", "669sb-blue",
"669sb-orange", "669sb-orange",
@ -2601,8 +2579,6 @@
"6724sb", "6724sb",
"673sb", "673sb",
"673sb", "673sb",
"674sb",
"674sb",
"675sb", "675sb",
"675sb", "675sb",
"676sb", "676sb",
@ -2645,16 +2621,12 @@
"692sb", "692sb",
"693sb", "693sb",
"693sb", "693sb",
"694sb",
"694sb",
"695sb", "695sb",
"695sb", "695sb",
"696sb", "696sb",
"696sb", "696sb",
"697sb", "697sb",
"697sb", "697sb",
"698sb",
"698sb",
"699sb", "699sb",
"699sb", "699sb",
"700sb", "700sb",
@ -2663,18 +2635,12 @@
"701sb", "701sb",
"702sb", "702sb",
"702sb", "702sb",
"703sb",
"703sb",
"704sb", "704sb",
"704sb", "704sb",
"705sb", "705sb",
"705sb", "705sb",
"706sb", "706sb",
"706sb", "706sb",
"707sb",
"707sb",
"708sb",
"708sb",
"709sb", "709sb",
"709sb", "709sb",
"710sb", "710sb",
@ -2685,8 +2651,6 @@
"712sb", "712sb",
"713sb", "713sb",
"713sb", "713sb",
"714sb",
"714sb",
"715sb", "715sb",
"715sb", "715sb",
"716sb-active", "716sb-active",
@ -2695,16 +2659,10 @@
"716sb-neutral", "716sb-neutral",
"717sb", "717sb",
"717sb", "717sb",
"718sb-10",
"718sb-10",
"718sb-complete", "718sb-complete",
"718sb-complete", "718sb-complete",
"718sb",
"718sb",
"719sb-mega", "719sb-mega",
"719sb-mega", "719sb-mega",
"719sb",
"719sb",
"720sb-unbound", "720sb-unbound",
"720sb-unbound", "720sb-unbound",
"720sb", "720sb",
@ -2975,6 +2933,8 @@
"814sb", "814sb",
"815sb", "815sb",
"815sb", "815sb",
"815sb-gigantamax",
"815sb-gigantamax",
"816sb", "816sb",
"816sb", "816sb",
"817sb", "817sb",
@ -3025,6 +2985,8 @@
"838sb", "838sb",
"839sb", "839sb",
"839sb", "839sb",
"839sb-gigantamax",
"839sb-gigantamax",
"840sb", "840sb",
"840sb", "840sb",
"841sb", "841sb",
@ -3351,8 +3313,6 @@
"978sb-droopy", "978sb-droopy",
"978sb-stretchy", "978sb-stretchy",
"978sb-stretchy", "978sb-stretchy",
"979sb",
"979sb",
"980sb", "980sb",
"980sb", "980sb",
"981sb", "981sb",
@ -3586,6 +3546,8 @@
"487s-origin", "487s-origin",
"531s-mega", "531s-mega",
"531s-mega", "531s-mega",
"569s-gigantamax",
"569s-gigantamax",
"6s-mega", "6s-mega",
"6s-mega", "6s-mega",
"6s-mega-x", "6s-mega-x",
@ -3604,6 +3566,8 @@
"6211s", "6211s",
"6215s", "6215s",
"6215s", "6215s",
"6215sf",
"6215sf",
"65s-mega", "65s-mega",
"65s-mega", "65s-mega",
"650s", "650s",
@ -3662,10 +3626,10 @@
"666s-fancy", "666s-fancy",
"666s-garden", "666s-garden",
"666s-garden", "666s-garden",
"666s-high", "666s-high-plains",
"666s-high", "666s-high-plains",
"666s-icy", "666s-icy-snow",
"666s-icy", "666s-icy-snow",
"666s-jungle", "666s-jungle",
"666s-jungle", "666s-jungle",
"666s-marine", "666s-marine",
@ -3678,8 +3642,8 @@
"666s-monsoon", "666s-monsoon",
"666s-ocean", "666s-ocean",
"666s-ocean", "666s-ocean",
"666s-poke", "666s-poke-ball",
"666s-poke", "666s-poke-ball",
"666s-polar", "666s-polar",
"666s-polar", "666s-polar",
"666s-river", "666s-river",
@ -3694,8 +3658,8 @@
"666s-tundra", "666s-tundra",
"667s", "667s",
"667s", "667s",
"668s-female", "668sf",
"668s-female", "668sf",
"668s", "668s",
"668s", "668s",
"669s-blue", "669s-blue",
@ -3740,8 +3704,6 @@
"6724s", "6724s",
"673s", "673s",
"673s", "673s",
"674s",
"674s",
"675s", "675s",
"675s", "675s",
"676s", "676s",
@ -3784,16 +3746,12 @@
"692s", "692s",
"693s", "693s",
"693s", "693s",
"694s",
"694s",
"695s", "695s",
"695s", "695s",
"696s", "696s",
"696s", "696s",
"697s", "697s",
"697s", "697s",
"698s",
"698s",
"699s", "699s",
"699s", "699s",
"700s", "700s",
@ -3802,18 +3760,12 @@
"701s", "701s",
"702s", "702s",
"702s", "702s",
"703s",
"703s",
"704s", "704s",
"704s", "704s",
"705s", "705s",
"705s", "705s",
"706s", "706s",
"706s", "706s",
"707s",
"707s",
"708s",
"708s",
"709s", "709s",
"709s", "709s",
"710s", "710s",
@ -3824,8 +3776,6 @@
"712s", "712s",
"713s", "713s",
"713s", "713s",
"714s",
"714s",
"715s", "715s",
"715s", "715s",
"716s-active", "716s-active",
@ -3834,16 +3784,10 @@
"716s-neutral", "716s-neutral",
"717s", "717s",
"717s", "717s",
"718s-10",
"718s-10",
"718s-complete", "718s-complete",
"718s-complete", "718s-complete",
"718s",
"718s",
"719s-mega", "719s-mega",
"719s-mega", "719s-mega",
"719s",
"719s",
"720s-unbound", "720s-unbound",
"720s-unbound", "720s-unbound",
"720s", "720s",
@ -4114,6 +4058,8 @@
"814s", "814s",
"815s", "815s",
"815s", "815s",
"815s-gigantamax",
"815s-gigantamax",
"816s", "816s",
"816s", "816s",
"817s", "817s",
@ -4164,6 +4110,8 @@
"838s", "838s",
"839s", "839s",
"839s", "839s",
"839s-gigantamax",
"839s-gigantamax",
"840s", "840s",
"840s", "840s",
"841s", "841s",
@ -4490,8 +4438,6 @@
"978s-droopy", "978s-droopy",
"978s-stretchy", "978s-stretchy",
"978s-stretchy", "978s-stretchy",
"979s",
"979s",
"980s", "980s",
"980s", "980s",
"981s", "981s",
@ -4587,6 +4533,7 @@
"475-mega_3", "475-mega_3",
"475-mega_3", "475-mega_3",
"6215", "6215",
"6215f",
"653", "653",
"654", "654",
"6549", "6549",
@ -4598,19 +4545,15 @@
"666-archipelago", "666-archipelago",
"666-continental", "666-continental",
"666-elegant", "666-elegant",
"666-fancy_2", "666-fancy",
"666-fancy_2", "666-fancy",
"666-fancy_3",
"666-fancy_3",
"666-garden", "666-garden",
"666-high", "666-high",
"666-icy", "666-icy-snow",
"666-jungle", "666-jungle",
"666-marine", "666-marine",
"666-meadow_2", "666-meadow",
"666-meadow_2", "666-meadow",
"666-meadow_3",
"666-meadow_3",
"666-modern", "666-modern",
"666-monsoon", "666-monsoon",
"666-ocean", "666-ocean",
@ -4619,8 +4562,6 @@
"666-poke", "666-poke",
"666-polar", "666-polar",
"666-river", "666-river",
"666-river_2",
"666-river_2",
"666-sandstorm", "666-sandstorm",
"666-savanna", "666-savanna",
"666-sun", "666-sun",
@ -4641,7 +4582,6 @@
"705_3", "705_3",
"705_3", "705_3",
"706", "706",
"708",
"709", "709",
"710", "710",
"711", "711",
@ -4826,6 +4766,10 @@
"150b-mega", "150b-mega",
"181b-mega", "181b-mega",
"212b-mega", "212b-mega",
"248b-mega",
"248b-mega",
"257b-mega",
"257b-mega",
"282b-mega", "282b-mega",
"3b-mega_2", "3b-mega_2",
"3b-mega_2", "3b-mega_2",
@ -4856,6 +4800,7 @@
"475b-mega_3", "475b-mega_3",
"475b-mega_3", "475b-mega_3",
"6215b", "6215b",
"6215bf",
"653b", "653b",
"654b", "654b",
"6549b", "6549b",
@ -4866,86 +4811,46 @@
"665b", "665b",
"665_2b", "665_2b",
"665_2b", "665_2b",
"666b-archipelago_2", "666b-archipelago",
"666b-archipelago_2", "666b-archipelago",
"666b-archipelago_3", "666b-continental",
"666b-archipelago_3", "666b-continental",
"666b-continental_2", "666b-elegant",
"666b-continental_2", "666b-elegant",
"666b-continental_3", "666b-fancy",
"666b-continental_3", "666b-fancy",
"666b-elegant_2", "666b-garden",
"666b-elegant_2", "666b-garden",
"666b-elegant_3", "666b-high-plains",
"666b-elegant_3", "666b-high-plains",
"666b-fancy_2", "666b-icy-snow",
"666b-fancy_2", "666b-icy-snow",
"666b-fancy_3", "666b-jungle",
"666b-fancy_3", "666b-jungle",
"666b-garden_2", "666b-marine",
"666b-garden_2", "666b-marine",
"666b-garden_3", "666b-meadow",
"666b-garden_3", "666b-meadow",
"666b-high", "666b-modern",
"666b-high", "666b-modern",
"666b-high", "666b-monsoon",
"666b-high", "666b-monsoon",
"666b-icy", "666b-ocean",
"666b-icy", "666b-ocean",
"666b-icy", "666b-poke-ball",
"666b-icy", "666b-poke-ball",
"666b-jungle_2", "666b-polar",
"666b-jungle_2", "666b-polar",
"666b-jungle_3", "666b-river",
"666b-jungle_3", "666b-river",
"666b-marine_2", "666b-sandstorm",
"666b-marine_2", "666b-sandstorm",
"666b-marine_3", "666b-savanna",
"666b-marine_3", "666b-savanna",
"666b-meadow_2", "666b-sun",
"666b-meadow_2", "666b-sun",
"666b-meadow_3", "666b-tundra",
"666b-meadow_3", "666b-tundra",
"666b-modern_2",
"666b-modern_2",
"666b-modern_3",
"666b-modern_3",
"666b-monsoon_2",
"666b-monsoon_2",
"666b-monsoon_3",
"666b-monsoon_3",
"666b-ocean_2",
"666b-ocean_2",
"666b-ocean_3",
"666b-ocean_3",
"666b-poke",
"666b-poke",
"666b-poke",
"666b-poke",
"666b-polar_2",
"666b-polar_2",
"666b-polar_3",
"666b-polar_3",
"666b-river_2",
"666b-river_2",
"666b-river_3",
"666b-river_3",
"666b-sandstorm_2",
"666b-sandstorm_2",
"666b-sandstorm_3",
"666b-sandstorm_3",
"666b-savanna_2",
"666b-savanna_2",
"666b-savanna_3",
"666b-savanna_3",
"666b-sun_2",
"666b-sun_2",
"666b-sun_3",
"666b-sun_3",
"666b-tundra_2",
"666b-tundra_2",
"666b-tundra_3",
"666b-tundra_3",
"6705b", "6705b",
"6706_2b", "6706_2b",
"6706_2b", "6706_2b",
@ -4957,7 +4862,6 @@
"704b", "704b",
"705b", "705b",
"706b", "706b",
"708b",
"709b", "709b",
"710b", "710b",
"711b", "711b",

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.1 KiB

After

Width:  |  Height:  |  Size: 8.1 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 65 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -1,41 +1,20 @@
{ { "frames": [
"textures": [ {
{ "filename": "0001.png",
"image": "656.png", "frame": { "x": 1, "y": 1, "w": 32, "h": 35 },
"format": "RGBA8888", "rotated": false,
"size": { "trimmed": false,
"w": 35, "spriteSourceSize": { "x": 0, "y": 0, "w": 32, "h": 35 },
"h": 35 "sourceSize": { "w": 32, "h": 35 },
}, "duration": 100
"scale": 1, }
"frames": [ ],
{ "meta": {
"filename": "0001.png", "app": "https://www.aseprite.org/",
"rotated": false, "version": "1.3.12-x64",
"trimmed": false, "image": "656.png",
"sourceSize": { "format": "I8",
"w": 32, "size": { "w": 34, "h": 37 },
"h": 35 "scale": "1"
}, }
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 32,
"h": 35
},
"frame": {
"x": 0,
"y": 0,
"w": 32,
"h": 35
}
}
]
}
],
"meta": {
"app": "https://www.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:25355f0b039f39b6231cb75c6f8a0200:2e119e5dd64fab6d996ea751c24a38e0:9c4d208e6c2f857bfb0b23b8eea3326c$"
}
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 515 B

After

Width:  |  Height:  |  Size: 528 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 948 B

After

Width:  |  Height:  |  Size: 982 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 970 B

After

Width:  |  Height:  |  Size: 1010 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 952 B

After

Width:  |  Height:  |  Size: 1005 B

View File

@ -1,41 +0,0 @@
{
"textures": [
{
"image": "668-female.png",
"format": "RGBA8888",
"size": {
"w": 72,
"h": 72
},
"scale": 1,
"frames": [
{
"filename": "0001.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 63,
"h": 72
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 63,
"h": 72
},
"frame": {
"x": 0,
"y": 0,
"w": 63,
"h": 72
}
}
]
}
],
"meta": {
"app": "https://www.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:3f88e039152d4a967a218cb721938610:e6991ce9c3bad348cbc05ebf9b440302:d99ed0e84a0695b54e479aa98271aba1$"
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 898 B

View File

@ -1,41 +1,506 @@
{ { "frames": [
"textures": [ {
{ "filename": "0001.png",
"image": "674.png", "frame": { "x": 0, "y": 0, "w": 29, "h": 42 },
"format": "RGBA8888", "rotated": false,
"size": { "trimmed": false,
"w": 42, "spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"h": 42 "sourceSize": { "w": 29, "h": 42 },
}, "duration": 140
"scale": 1, },
"frames": [ {
{ "filename": "0002.png",
"filename": "0001.png", "frame": { "x": 29, "y": 0, "w": 29, "h": 42 },
"rotated": false, "rotated": false,
"trimmed": false, "trimmed": false,
"sourceSize": { "spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"w": 28, "sourceSize": { "w": 29, "h": 42 },
"h": 42 "duration": 70
}, },
"spriteSourceSize": { {
"x": 0, "filename": "0003.png",
"y": 0, "frame": { "x": 58, "y": 0, "w": 29, "h": 42 },
"w": 28, "rotated": false,
"h": 42 "trimmed": false,
}, "spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"frame": { "sourceSize": { "w": 29, "h": 42 },
"x": 0, "duration": 140
"y": 0, },
"w": 28, {
"h": 42 "filename": "0004.png",
} "frame": { "x": 87, "y": 0, "w": 29, "h": 42 },
} "rotated": false,
] "trimmed": false,
} "spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
], "sourceSize": { "w": 29, "h": 42 },
"meta": { "duration": 210
"app": "https://www.codeandweb.com/texturepacker", },
"version": "3.0", {
"smartupdate": "$TexturePacker:SmartUpdate:17675dc9d79a224d5cfe26d4ea11594d:afc8db52143597fb62ac44c9a1600a80:b823d10f1c9b4d501296982088ba63d6$" "filename": "0005.png",
} "frame": { "x": 58, "y": 0, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0006.png",
"frame": { "x": 29, "y": 0, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0007.png",
"frame": { "x": 0, "y": 0, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0008.png",
"frame": { "x": 29, "y": 0, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 70
},
{
"filename": "0009.png",
"frame": { "x": 58, "y": 0, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0010.png",
"frame": { "x": 87, "y": 0, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 210
},
{
"filename": "0011.png",
"frame": { "x": 58, "y": 0, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0012.png",
"frame": { "x": 29, "y": 0, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0013.png",
"frame": { "x": 0, "y": 0, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0014.png",
"frame": { "x": 29, "y": 0, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 70
},
{
"filename": "0015.png",
"frame": { "x": 58, "y": 0, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0016.png",
"frame": { "x": 87, "y": 0, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 210
},
{
"filename": "0017.png",
"frame": { "x": 58, "y": 0, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0018.png",
"frame": { "x": 29, "y": 0, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0019.png",
"frame": { "x": 0, "y": 0, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0020.png",
"frame": { "x": 29, "y": 0, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 70
},
{
"filename": "0021.png",
"frame": { "x": 58, "y": 0, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0022.png",
"frame": { "x": 87, "y": 0, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 210
},
{
"filename": "0023.png",
"frame": { "x": 58, "y": 0, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0024.png",
"frame": { "x": 29, "y": 0, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0025.png",
"frame": { "x": 0, "y": 0, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0026.png",
"frame": { "x": 29, "y": 0, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 70
},
{
"filename": "0027.png",
"frame": { "x": 58, "y": 0, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0028.png",
"frame": { "x": 87, "y": 0, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 210
},
{
"filename": "0029.png",
"frame": { "x": 58, "y": 0, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0030.png",
"frame": { "x": 29, "y": 0, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0031.png",
"frame": { "x": 0, "y": 42, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0032.png",
"frame": { "x": 29, "y": 42, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 70
},
{
"filename": "0033.png",
"frame": { "x": 58, "y": 42, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0034.png",
"frame": { "x": 87, "y": 42, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 210
},
{
"filename": "0035.png",
"frame": { "x": 58, "y": 42, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0036.png",
"frame": { "x": 0, "y": 84, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0037.png",
"frame": { "x": 29, "y": 84, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0038.png",
"frame": { "x": 58, "y": 84, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 70
},
{
"filename": "0039.png",
"frame": { "x": 87, "y": 84, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0040.png",
"frame": { "x": 0, "y": 126, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 210
},
{
"filename": "0041.png",
"frame": { "x": 87, "y": 84, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0042.png",
"frame": { "x": 58, "y": 84, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0043.png",
"frame": { "x": 29, "y": 84, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0044.png",
"frame": { "x": 58, "y": 84, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 70
},
{
"filename": "0045.png",
"frame": { "x": 87, "y": 84, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0046.png",
"frame": { "x": 0, "y": 126, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 210
},
{
"filename": "0047.png",
"frame": { "x": 87, "y": 84, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0048.png",
"frame": { "x": 58, "y": 84, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0049.png",
"frame": { "x": 29, "y": 84, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0050.png",
"frame": { "x": 0, "y": 84, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 70
},
{
"filename": "0051.png",
"frame": { "x": 58, "y": 42, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0052.png",
"frame": { "x": 87, "y": 42, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 210
},
{
"filename": "0053.png",
"frame": { "x": 29, "y": 126, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 70
},
{
"filename": "0054.png",
"frame": { "x": 29, "y": 0, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0055.png",
"frame": { "x": 58, "y": 126, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 70
}
],
"meta": {
"app": "https://www.aseprite.org/",
"version": "1.3.11-x64",
"image": "674.png",
"format": "I8",
"size": { "w": 116, "h": 168 },
"scale": "1"
}
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 450 B

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1,41 +1,767 @@
{ { "frames": [
"textures": [ {
{ "filename": "0001.png",
"image": "694.png", "frame": { "x": 41, "y": 176, "w": 41, "h": 38 },
"format": "RGBA8888", "rotated": false,
"size": { "trimmed": true,
"w": 41, "spriteSourceSize": { "x": 13, "y": 12, "w": 41, "h": 38 },
"h": 41 "sourceSize": { "w": 62, "h": 50 },
}, "duration": 100
"scale": 1, },
"frames": [ {
{ "filename": "0002.png",
"filename": "0001.png", "frame": { "x": 158, "y": 137, "w": 42, "h": 38 },
"rotated": false, "rotated": false,
"trimmed": false, "trimmed": true,
"sourceSize": { "spriteSourceSize": { "x": 12, "y": 12, "w": 42, "h": 38 },
"w": 41, "sourceSize": { "w": 62, "h": 50 },
"h": 38 "duration": 100
}, },
"spriteSourceSize": { {
"x": 0, "filename": "0003.png",
"y": 0, "frame": { "x": 0, "y": 133, "w": 43, "h": 38 },
"w": 41, "rotated": false,
"h": 38 "trimmed": true,
}, "spriteSourceSize": { "x": 11, "y": 12, "w": 43, "h": 38 },
"frame": { "sourceSize": { "w": 62, "h": 50 },
"x": 0, "duration": 100
"y": 0, },
"w": 41, {
"h": 38 "filename": "0004.png",
} "frame": { "x": 114, "y": 132, "w": 44, "h": 38 },
} "rotated": false,
] "trimmed": true,
} "spriteSourceSize": { "x": 10, "y": 12, "w": 44, "h": 38 },
], "sourceSize": { "w": 62, "h": 50 },
"meta": { "duration": 100
"app": "https://www.codeandweb.com/texturepacker", },
"version": "3.0", {
"smartupdate": "$TexturePacker:SmartUpdate:a121458917a5069ac5fcf0438e46af2b:afcd331d4ef231f539d602827ea66e55:b0990f9650cfe63b836cbed33f0b44d8$" "filename": "0005.png",
} "frame": { "x": 0, "y": 95, "w": 45, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 12, "w": 45, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0006.png",
"frame": { "x": 227, "y": 131, "w": 46, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 13, "w": 46, "h": 37 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0007.png",
"frame": { "x": 273, "y": 136, "w": 44, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 13, "w": 44, "h": 37 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0008.png",
"frame": { "x": 82, "y": 208, "w": 41, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 13, "y": 13, "w": 41, "h": 37 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0009.png",
"frame": { "x": 246, "y": 211, "w": 39, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 15, "y": 13, "w": 39, "h": 37 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0010.png",
"frame": { "x": 207, "y": 211, "w": 39, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 15, "y": 13, "w": 39, "h": 37 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0011.png",
"frame": { "x": 285, "y": 211, "w": 38, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 15, "y": 13, "w": 38, "h": 37 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0012.png",
"frame": { "x": 123, "y": 213, "w": 39, "h": 36 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 15, "y": 14, "w": 39, "h": 36 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0013.png",
"frame": { "x": 0, "y": 209, "w": 40, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 14, "y": 13, "w": 40, "h": 37 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0014.png",
"frame": { "x": 167, "y": 206, "w": 40, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 14, "y": 12, "w": 40, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0015.png",
"frame": { "x": 200, "y": 168, "w": 41, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 13, "y": 12, "w": 41, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0016.png",
"frame": { "x": 41, "y": 176, "w": 41, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 13, "y": 12, "w": 41, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0017.png",
"frame": { "x": 158, "y": 137, "w": 42, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 12, "y": 12, "w": 42, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0018.png",
"frame": { "x": 0, "y": 133, "w": 43, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 11, "y": 12, "w": 43, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0019.png",
"frame": { "x": 114, "y": 132, "w": 44, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 12, "w": 44, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0020.png",
"frame": { "x": 0, "y": 95, "w": 45, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 12, "w": 45, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0021.png",
"frame": { "x": 227, "y": 131, "w": 46, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 13, "w": 46, "h": 37 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0022.png",
"frame": { "x": 273, "y": 136, "w": 44, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 13, "w": 44, "h": 37 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0023.png",
"frame": { "x": 82, "y": 208, "w": 41, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 13, "y": 13, "w": 41, "h": 37 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0024.png",
"frame": { "x": 246, "y": 211, "w": 39, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 15, "y": 13, "w": 39, "h": 37 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0025.png",
"frame": { "x": 207, "y": 211, "w": 39, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 15, "y": 13, "w": 39, "h": 37 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0026.png",
"frame": { "x": 285, "y": 211, "w": 38, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 15, "y": 13, "w": 38, "h": 37 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0027.png",
"frame": { "x": 123, "y": 213, "w": 39, "h": 36 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 15, "y": 14, "w": 39, "h": 36 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0028.png",
"frame": { "x": 0, "y": 209, "w": 40, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 14, "y": 13, "w": 40, "h": 37 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0029.png",
"frame": { "x": 167, "y": 206, "w": 40, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 14, "y": 12, "w": 40, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0030.png",
"frame": { "x": 200, "y": 168, "w": 41, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 13, "y": 12, "w": 41, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0031.png",
"frame": { "x": 41, "y": 176, "w": 41, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 13, "y": 12, "w": 41, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0032.png",
"frame": { "x": 158, "y": 137, "w": 42, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 12, "y": 12, "w": 42, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0033.png",
"frame": { "x": 0, "y": 133, "w": 43, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 11, "y": 12, "w": 43, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0034.png",
"frame": { "x": 114, "y": 132, "w": 44, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 12, "w": 44, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0035.png",
"frame": { "x": 0, "y": 95, "w": 45, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 12, "w": 45, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0036.png",
"frame": { "x": 227, "y": 131, "w": 46, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 13, "w": 46, "h": 37 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0037.png",
"frame": { "x": 273, "y": 136, "w": 44, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 13, "w": 44, "h": 37 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0038.png",
"frame": { "x": 82, "y": 208, "w": 41, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 13, "y": 13, "w": 41, "h": 37 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0039.png",
"frame": { "x": 246, "y": 211, "w": 39, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 15, "y": 13, "w": 39, "h": 37 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0040.png",
"frame": { "x": 207, "y": 211, "w": 39, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 15, "y": 13, "w": 39, "h": 37 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0041.png",
"frame": { "x": 285, "y": 211, "w": 38, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 15, "y": 13, "w": 38, "h": 37 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0042.png",
"frame": { "x": 123, "y": 213, "w": 39, "h": 36 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 15, "y": 14, "w": 39, "h": 36 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0043.png",
"frame": { "x": 0, "y": 209, "w": 40, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 14, "y": 13, "w": 40, "h": 37 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0044.png",
"frame": { "x": 167, "y": 206, "w": 40, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 14, "y": 12, "w": 40, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0045.png",
"frame": { "x": 200, "y": 168, "w": 41, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 13, "y": 12, "w": 41, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0046.png",
"frame": { "x": 41, "y": 176, "w": 41, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 13, "y": 12, "w": 41, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0047.png",
"frame": { "x": 158, "y": 137, "w": 42, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 12, "y": 12, "w": 42, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0048.png",
"frame": { "x": 0, "y": 133, "w": 43, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 11, "y": 12, "w": 43, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0049.png",
"frame": { "x": 114, "y": 132, "w": 44, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 12, "w": 44, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0050.png",
"frame": { "x": 0, "y": 95, "w": 45, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 12, "w": 45, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0051.png",
"frame": { "x": 227, "y": 131, "w": 46, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 13, "w": 46, "h": 37 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0052.png",
"frame": { "x": 273, "y": 136, "w": 44, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 13, "w": 44, "h": 37 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0053.png",
"frame": { "x": 82, "y": 208, "w": 41, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 13, "y": 13, "w": 41, "h": 37 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0054.png",
"frame": { "x": 246, "y": 211, "w": 39, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 15, "y": 13, "w": 39, "h": 37 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0055.png",
"frame": { "x": 207, "y": 211, "w": 39, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 15, "y": 13, "w": 39, "h": 37 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0056.png",
"frame": { "x": 285, "y": 211, "w": 38, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 15, "y": 13, "w": 38, "h": 37 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0057.png",
"frame": { "x": 123, "y": 213, "w": 39, "h": 36 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 15, "y": 14, "w": 39, "h": 36 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0058.png",
"frame": { "x": 0, "y": 209, "w": 40, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 14, "y": 13, "w": 40, "h": 37 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0059.png",
"frame": { "x": 167, "y": 206, "w": 40, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 14, "y": 12, "w": 40, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0060.png",
"frame": { "x": 200, "y": 168, "w": 41, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 13, "y": 12, "w": 41, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0061.png",
"frame": { "x": 41, "y": 176, "w": 41, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 13, "y": 12, "w": 41, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0062.png",
"frame": { "x": 282, "y": 173, "w": 41, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 13, "y": 12, "w": 41, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0063.png",
"frame": { "x": 241, "y": 173, "w": 41, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 13, "y": 12, "w": 41, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0064.png",
"frame": { "x": 0, "y": 171, "w": 41, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 13, "y": 12, "w": 41, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0065.png",
"frame": { "x": 85, "y": 170, "w": 41, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 13, "y": 12, "w": 41, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0066.png",
"frame": { "x": 227, "y": 93, "w": 52, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 4, "y": 12, "w": 52, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0067.png",
"frame": { "x": 57, "y": 50, "w": 55, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 11, "w": 55, "h": 39 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0068.png",
"frame": { "x": 56, "y": 0, "w": 56, "h": 50 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 0, "w": 56, "h": 50 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0069.png",
"frame": { "x": 112, "y": 0, "w": 56, "h": 49 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 1, "w": 56, "h": 49 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0070.png",
"frame": { "x": 0, "y": 0, "w": 56, "h": 50 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 0, "w": 56, "h": 50 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0071.png",
"frame": { "x": 224, "y": 47, "w": 57, "h": 46 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 4, "w": 57, "h": 46 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0072.png",
"frame": { "x": 281, "y": 46, "w": 57, "h": 46 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 5, "y": 4, "w": 57, "h": 46 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0073.png",
"frame": { "x": 168, "y": 0, "w": 56, "h": 48 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 6, "y": 2, "w": 56, "h": 48 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0074.png",
"frame": { "x": 281, "y": 0, "w": 57, "h": 46 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 4, "y": 4, "w": 57, "h": 46 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0075.png",
"frame": { "x": 170, "y": 93, "w": 57, "h": 44 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 6, "w": 57, "h": 44 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0076.png",
"frame": { "x": 224, "y": 0, "w": 57, "h": 47 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 3, "w": 57, "h": 47 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0077.png",
"frame": { "x": 0, "y": 50, "w": 57, "h": 45 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 5, "w": 57, "h": 45 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0078.png",
"frame": { "x": 281, "y": 92, "w": 57, "h": 44 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 6, "w": 57, "h": 44 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0079.png",
"frame": { "x": 57, "y": 94, "w": 57, "h": 44 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 6, "w": 57, "h": 44 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0080.png",
"frame": { "x": 112, "y": 49, "w": 58, "h": 45 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 5, "w": 58, "h": 45 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0081.png",
"frame": { "x": 114, "y": 94, "w": 56, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 12, "w": 56, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0082.png",
"frame": { "x": 170, "y": 48, "w": 53, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 12, "w": 53, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0083.png",
"frame": { "x": 126, "y": 175, "w": 41, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 12, "y": 12, "w": 41, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
{
"filename": "0084.png",
"frame": { "x": 43, "y": 138, "w": 42, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 12, "y": 12, "w": 42, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
}
],
"meta": {
"app": "https://www.aseprite.org/",
"version": "1.3.11-x64",
"image": "694.png",
"format": "I8",
"size": { "w": 338, "h": 249 },
"scale": "1"
}
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 475 B

After

Width:  |  Height:  |  Size: 11 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 548 B

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@ -1,41 +1,569 @@
{ { "frames": [
"textures": [ {
{ "filename": "0001.png",
"image": "703.png", "frame": { "x": 0, "y": 0, "w": 37, "h": 38 },
"format": "RGBA8888", "rotated": false,
"size": { "trimmed": true,
"w": 38, "spriteSourceSize": { "x": 2, "y": 0, "w": 37, "h": 38 },
"h": 38 "sourceSize": { "w": 40, "h": 49 },
}, "duration": 110
"scale": 1, },
"frames": [ {
{ "filename": "0002.png",
"filename": "0001.png", "frame": { "x": 37, "y": 0, "w": 37, "h": 38 },
"rotated": false, "rotated": false,
"trimmed": false, "trimmed": true,
"sourceSize": { "spriteSourceSize": { "x": 1, "y": 1, "w": 37, "h": 38 },
"w": 37, "sourceSize": { "w": 40, "h": 49 },
"h": 38 "duration": 110
}, },
"spriteSourceSize": { {
"x": 0, "filename": "0003.png",
"y": 0, "frame": { "x": 35, "y": 38, "w": 36, "h": 38 },
"w": 37, "rotated": false,
"h": 38 "trimmed": true,
}, "spriteSourceSize": { "x": 0, "y": 4, "w": 36, "h": 38 },
"frame": { "sourceSize": { "w": 40, "h": 49 },
"x": 0, "duration": 110
"y": 0, },
"w": 37, {
"h": 38 "filename": "0004.png",
} "frame": { "x": 71, "y": 38, "w": 36, "h": 38 },
} "rotated": false,
] "trimmed": true,
} "spriteSourceSize": { "x": 1, "y": 6, "w": 36, "h": 38 },
], "sourceSize": { "w": 40, "h": 49 },
"meta": { "duration": 110
"app": "https://www.codeandweb.com/texturepacker", },
"version": "3.0", {
"smartupdate": "$TexturePacker:SmartUpdate:5da3bf1b2b82712da609c628fc886d69:7a2dc2f1f3b5fa2ee6b04cdf4c952277:721af8c322ff60159262e9b3017c784d$" "filename": "0005.png",
} "frame": { "x": 107, "y": 38, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 8, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0006.png",
"frame": { "x": 0, "y": 78, "w": 35, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 9, "w": 35, "h": 39 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0007.png",
"frame": { "x": 148, "y": 0, "w": 35, "h": 40 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 9, "w": 35, "h": 40 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0008.png",
"frame": { "x": 0, "y": 38, "w": 35, "h": 40 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 8, "w": 35, "h": 40 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0009.png",
"frame": { "x": 143, "y": 78, "w": 35, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 7, "w": 35, "h": 39 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0010.png",
"frame": { "x": 143, "y": 40, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 6, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0011.png",
"frame": { "x": 35, "y": 76, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 4, "y": 4, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0012.png",
"frame": { "x": 71, "y": 76, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 1, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0013.png",
"frame": { "x": 0, "y": 0, "w": 37, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 0, "w": 37, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0014.png",
"frame": { "x": 37, "y": 0, "w": 37, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 1, "w": 37, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0015.png",
"frame": { "x": 35, "y": 38, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 4, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0016.png",
"frame": { "x": 71, "y": 38, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 6, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0017.png",
"frame": { "x": 107, "y": 38, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 8, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0018.png",
"frame": { "x": 0, "y": 78, "w": 35, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 9, "w": 35, "h": 39 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0019.png",
"frame": { "x": 148, "y": 0, "w": 35, "h": 40 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 9, "w": 35, "h": 40 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0020.png",
"frame": { "x": 0, "y": 38, "w": 35, "h": 40 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 8, "w": 35, "h": 40 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0021.png",
"frame": { "x": 143, "y": 78, "w": 35, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 7, "w": 35, "h": 39 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0022.png",
"frame": { "x": 143, "y": 40, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 6, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0023.png",
"frame": { "x": 35, "y": 76, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 4, "y": 4, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0024.png",
"frame": { "x": 71, "y": 76, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 1, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0025.png",
"frame": { "x": 0, "y": 0, "w": 37, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 0, "w": 37, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0026.png",
"frame": { "x": 37, "y": 0, "w": 37, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 1, "w": 37, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0027.png",
"frame": { "x": 35, "y": 38, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 4, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0028.png",
"frame": { "x": 71, "y": 38, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 6, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0029.png",
"frame": { "x": 107, "y": 38, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 8, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0030.png",
"frame": { "x": 0, "y": 78, "w": 35, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 9, "w": 35, "h": 39 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0031.png",
"frame": { "x": 148, "y": 0, "w": 35, "h": 40 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 9, "w": 35, "h": 40 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0032.png",
"frame": { "x": 0, "y": 38, "w": 35, "h": 40 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 8, "w": 35, "h": 40 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0033.png",
"frame": { "x": 143, "y": 78, "w": 35, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 7, "w": 35, "h": 39 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0034.png",
"frame": { "x": 143, "y": 40, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 6, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0035.png",
"frame": { "x": 35, "y": 76, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 4, "y": 4, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0036.png",
"frame": { "x": 71, "y": 76, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 1, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0037.png",
"frame": { "x": 0, "y": 0, "w": 37, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 0, "w": 37, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0038.png",
"frame": { "x": 37, "y": 0, "w": 37, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 1, "w": 37, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0039.png",
"frame": { "x": 35, "y": 38, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 4, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0040.png",
"frame": { "x": 71, "y": 38, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 6, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0041.png",
"frame": { "x": 107, "y": 38, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 8, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0042.png",
"frame": { "x": 0, "y": 78, "w": 35, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 9, "w": 35, "h": 39 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0043.png",
"frame": { "x": 148, "y": 0, "w": 35, "h": 40 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 9, "w": 35, "h": 40 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0044.png",
"frame": { "x": 0, "y": 38, "w": 35, "h": 40 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 8, "w": 35, "h": 40 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0045.png",
"frame": { "x": 143, "y": 78, "w": 35, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 7, "w": 35, "h": 39 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0046.png",
"frame": { "x": 143, "y": 40, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 6, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0047.png",
"frame": { "x": 35, "y": 76, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 4, "y": 4, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0048.png",
"frame": { "x": 71, "y": 76, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 1, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0049.png",
"frame": { "x": 0, "y": 0, "w": 37, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 0, "w": 37, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0050.png",
"frame": { "x": 74, "y": 0, "w": 37, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 3, "w": 37, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0051.png",
"frame": { "x": 35, "y": 114, "w": 35, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 4, "w": 35, "h": 39 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0052.png",
"frame": { "x": 70, "y": 114, "w": 35, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 7, "w": 35, "h": 39 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0053.png",
"frame": { "x": 105, "y": 114, "w": 35, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 3, "w": 35, "h": 39 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0054.png",
"frame": { "x": 0, "y": 117, "w": 35, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 6, "w": 35, "h": 39 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0055.png",
"frame": { "x": 140, "y": 117, "w": 35, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 4, "w": 35, "h": 39 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0056.png",
"frame": { "x": 0, "y": 117, "w": 35, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 6, "w": 35, "h": 39 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0057.png",
"frame": { "x": 0, "y": 117, "w": 35, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 5, "w": 35, "h": 39 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0058.png",
"frame": { "x": 0, "y": 117, "w": 35, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 6, "w": 35, "h": 39 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0059.png",
"frame": { "x": 35, "y": 153, "w": 35, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 5, "w": 35, "h": 39 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0060.png",
"frame": { "x": 111, "y": 0, "w": 37, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 37, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0061.png",
"frame": { "x": 107, "y": 76, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0062.png",
"frame": { "x": 107, "y": 76, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 1, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
}
],
"meta": {
"app": "https://www.aseprite.org/",
"version": "1.3.11-x64",
"image": "703.png",
"format": "I8",
"size": { "w": 183, "h": 192 },
"scale": "1"
}
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 490 B

After

Width:  |  Height:  |  Size: 2.3 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 866 B

After

Width:  |  Height:  |  Size: 59 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 478 B

After

Width:  |  Height:  |  Size: 8.8 KiB

View File

@ -1,41 +1,263 @@
{ { "frames": [
"textures": [ {
{ "filename": "0001.png",
"image": "714.png", "frame": { "x": 1, "y": 1, "w": 64, "h": 57 },
"format": "RGBA8888", "rotated": false,
"size": { "trimmed": true,
"w": 64, "spriteSourceSize": { "x": 1, "y": 4, "w": 64, "h": 57 },
"h": 64 "sourceSize": { "w": 66, "h": 70 },
}, "duration": 50
"scale": 1, },
"frames": [ {
{ "filename": "0002.png",
"filename": "0001.png", "frame": { "x": 133, "y": 1, "w": 64, "h": 56 },
"rotated": false, "rotated": false,
"trimmed": false, "trimmed": true,
"sourceSize": { "spriteSourceSize": { "x": 0, "y": 6, "w": 64, "h": 56 },
"w": 64, "sourceSize": { "w": 66, "h": 70 },
"h": 57 "duration": 50
}, },
"spriteSourceSize": { {
"x": 0, "filename": "0003.png",
"y": 0, "frame": { "x": 1, "y": 60, "w": 61, "h": 55 },
"w": 64, "rotated": false,
"h": 57 "trimmed": true,
}, "spriteSourceSize": { "x": 0, "y": 8, "w": 61, "h": 55 },
"frame": { "sourceSize": { "w": 66, "h": 70 },
"x": 0, "duration": 50
"y": 0, },
"w": 64, {
"h": 57 "filename": "0004.png",
} "frame": { "x": 184, "y": 117, "w": 32, "h": 67 },
} "rotated": false,
] "trimmed": true,
} "spriteSourceSize": { "x": 10, "y": 3, "w": 32, "h": 67 },
], "sourceSize": { "w": 66, "h": 70 },
"meta": { "duration": 50
"app": "https://www.codeandweb.com/texturepacker", },
"version": "3.0", {
"smartupdate": "$TexturePacker:SmartUpdate:acf096b1d2c6d9730a18ff797fb5ae47:ea434d000e9983cb42ecd03220d247c4:1a07d46e710b0568ec824f54fbc4fe6a$" "filename": "0005.png",
} "frame": { "x": 50, "y": 119, "w": 33, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 3, "w": 33, "h": 63 },
"sourceSize": { "w": 66, "h": 70 },
"duration": 50
},
{
"filename": "0006.png",
"frame": { "x": 199, "y": 1, "w": 47, "h": 56 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 1, "w": 47, "h": 56 },
"sourceSize": { "w": 66, "h": 70 },
"duration": 50
},
{
"filename": "0007.png",
"frame": { "x": 64, "y": 60, "w": 47, "h": 57 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 0, "w": 47, "h": 57 },
"sourceSize": { "w": 66, "h": 70 },
"duration": 50
},
{
"filename": "0008.png",
"frame": { "x": 1, "y": 1, "w": 64, "h": 57 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 64, "h": 57 },
"sourceSize": { "w": 66, "h": 70 },
"duration": 50
},
{
"filename": "0009.png",
"frame": { "x": 133, "y": 1, "w": 64, "h": 56 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 6, "w": 64, "h": 56 },
"sourceSize": { "w": 66, "h": 70 },
"duration": 50
},
{
"filename": "0010.png",
"frame": { "x": 1, "y": 60, "w": 61, "h": 55 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 4, "y": 8, "w": 61, "h": 55 },
"sourceSize": { "w": 66, "h": 70 },
"duration": 50
},
{
"filename": "0011.png",
"frame": { "x": 184, "y": 117, "w": 32, "h": 67 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 16, "y": 3, "w": 32, "h": 67 },
"sourceSize": { "w": 66, "h": 70 },
"duration": 50
},
{
"filename": "0012.png",
"frame": { "x": 50, "y": 119, "w": 33, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 14, "y": 3, "w": 33, "h": 63 },
"sourceSize": { "w": 66, "h": 70 },
"duration": 50
},
{
"filename": "0013.png",
"frame": { "x": 199, "y": 1, "w": 47, "h": 56 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 11, "y": 1, "w": 47, "h": 56 },
"sourceSize": { "w": 66, "h": 70 },
"duration": 50
},
{
"filename": "0014.png",
"frame": { "x": 64, "y": 60, "w": 47, "h": 57 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 0, "w": 47, "h": 57 },
"sourceSize": { "w": 66, "h": 70 },
"duration": 50
},
{
"filename": "0015.png",
"frame": { "x": 1, "y": 1, "w": 64, "h": 57 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 64, "h": 57 },
"sourceSize": { "w": 66, "h": 70 },
"duration": 50
},
{
"filename": "0016.png",
"frame": { "x": 133, "y": 1, "w": 64, "h": 56 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 6, "w": 64, "h": 56 },
"sourceSize": { "w": 66, "h": 70 },
"duration": 50
},
{
"filename": "0017.png",
"frame": { "x": 133, "y": 59, "w": 61, "h": 56 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 7, "w": 61, "h": 56 },
"sourceSize": { "w": 66, "h": 70 },
"duration": 50
},
{
"filename": "0018.png",
"frame": { "x": 113, "y": 117, "w": 33, "h": 68 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 2, "w": 33, "h": 68 },
"sourceSize": { "w": 66, "h": 70 },
"duration": 50
},
{
"filename": "0019.png",
"frame": { "x": 148, "y": 117, "w": 34, "h": 64 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 2, "w": 34, "h": 64 },
"sourceSize": { "w": 66, "h": 70 },
"duration": 50
},
{
"filename": "0020.png",
"frame": { "x": 1, "y": 117, "w": 47, "h": 57 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 0, "w": 47, "h": 57 },
"sourceSize": { "w": 66, "h": 70 },
"duration": 50
},
{
"filename": "0021.png",
"frame": { "x": 64, "y": 60, "w": 47, "h": 57 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 0, "w": 47, "h": 57 },
"sourceSize": { "w": 66, "h": 70 },
"duration": 50
},
{
"filename": "0022.png",
"frame": { "x": 1, "y": 1, "w": 64, "h": 57 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 64, "h": 57 },
"sourceSize": { "w": 66, "h": 70 },
"duration": 50
},
{
"filename": "0023.png",
"frame": { "x": 67, "y": 1, "w": 64, "h": 57 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 5, "w": 64, "h": 57 },
"sourceSize": { "w": 66, "h": 70 },
"duration": 50
},
{
"filename": "0024.png",
"frame": { "x": 196, "y": 59, "w": 61, "h": 56 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 4, "y": 7, "w": 61, "h": 56 },
"sourceSize": { "w": 66, "h": 70 },
"duration": 50
},
{
"filename": "0025.png",
"frame": { "x": 113, "y": 117, "w": 33, "h": 68 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 16, "y": 2, "w": 33, "h": 68 },
"sourceSize": { "w": 66, "h": 70 },
"duration": 50
},
{
"filename": "0026.png",
"frame": { "x": 218, "y": 117, "w": 33, "h": 64 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 14, "y": 2, "w": 33, "h": 64 },
"sourceSize": { "w": 66, "h": 70 },
"duration": 50
},
{
"filename": "0027.png",
"frame": { "x": 199, "y": 1, "w": 47, "h": 56 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 11, "y": 1, "w": 47, "h": 56 },
"sourceSize": { "w": 66, "h": 70 },
"duration": 50
},
{
"filename": "0028.png",
"frame": { "x": 64, "y": 60, "w": 47, "h": 57 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 0, "w": 47, "h": 57 },
"sourceSize": { "w": 66, "h": 70 },
"duration": 50
}
],
"meta": {
"app": "https://www.aseprite.org/",
"version": "1.3.12-x64",
"image": "714.png",
"format": "I8",
"size": { "w": 258, "h": 186 },
"scale": "1"
}
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 752 B

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@ -1,41 +1,686 @@
{ { "frames": [
"textures": [ {
{ "filename": "0001.png",
"image": "718-10.png", "frame": { "x": 0, "y": 0, "w": 57, "h": 67 },
"format": "RGBA8888", "rotated": false,
"size": { "trimmed": true,
"w": 66, "spriteSourceSize": { "x": 2, "y": 1, "w": 57, "h": 67 },
"h": 66 "sourceSize": { "w": 61, "h": 69 },
}, "duration": 100
"scale": 1, },
"frames": [ {
{ "filename": "0002.png",
"filename": "0001.png", "frame": { "x": 173, "y": 0, "w": 57, "h": 66 },
"rotated": false, "rotated": false,
"trimmed": false, "trimmed": true,
"sourceSize": { "spriteSourceSize": { "x": 2, "y": 2, "w": 57, "h": 66 },
"w": 56, "sourceSize": { "w": 61, "h": 69 },
"h": 66 "duration": 100
}, },
"spriteSourceSize": { {
"x": 0, "filename": "0003.png",
"y": 0, "frame": { "x": 230, "y": 0, "w": 57, "h": 66 },
"w": 56, "rotated": false,
"h": 66 "trimmed": true,
}, "spriteSourceSize": { "x": 3, "y": 2, "w": 57, "h": 66 },
"frame": { "sourceSize": { "w": 61, "h": 69 },
"x": 0, "duration": 100
"y": 0, },
"w": 56, {
"h": 66 "filename": "0004.png",
} "frame": { "x": 57, "y": 0, "w": 58, "h": 65 },
} "rotated": false,
] "trimmed": true,
} "spriteSourceSize": { "x": 2, "y": 3, "w": 58, "h": 65 },
], "sourceSize": { "w": 61, "h": 69 },
"meta": { "duration": 100
"app": "https://www.codeandweb.com/texturepacker", },
"version": "3.0", {
"smartupdate": "$TexturePacker:SmartUpdate:a1845dc28b51b657957628d4b4d7af94:87a4c3e6fcac562963f6331abb3d962c:82195cf2a6db620c5643b8162d6e8c5c$" "filename": "0005.png",
} "frame": { "x": 115, "y": 0, "w": 58, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 3, "w": 58, "h": 65 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0006.png",
"frame": { "x": 171, "y": 66, "w": 58, "h": 64 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 4, "w": 58, "h": 64 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0007.png",
"frame": { "x": 229, "y": 66, "w": 58, "h": 64 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 4, "w": 58, "h": 64 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0008.png",
"frame": { "x": 287, "y": 66, "w": 58, "h": 64 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 4, "w": 58, "h": 64 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0009.png",
"frame": { "x": 171, "y": 130, "w": 58, "h": 64 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 4, "w": 58, "h": 64 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0010.png",
"frame": { "x": 229, "y": 130, "w": 58, "h": 64 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 4, "w": 58, "h": 64 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0011.png",
"frame": { "x": 0, "y": 67, "w": 57, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 3, "w": 57, "h": 65 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0012.png",
"frame": { "x": 287, "y": 0, "w": 57, "h": 66 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 2, "w": 57, "h": 66 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0013.png",
"frame": { "x": 57, "y": 65, "w": 57, "h": 66 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 57, "h": 66 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0014.png",
"frame": { "x": 114, "y": 65, "w": 57, "h": 66 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 57, "h": 66 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0015.png",
"frame": { "x": 0, "y": 0, "w": 57, "h": 67 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 1, "w": 57, "h": 67 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0016.png",
"frame": { "x": 173, "y": 0, "w": 57, "h": 66 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 57, "h": 66 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0017.png",
"frame": { "x": 230, "y": 0, "w": 57, "h": 66 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 2, "w": 57, "h": 66 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0018.png",
"frame": { "x": 57, "y": 0, "w": 58, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 3, "w": 58, "h": 65 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0019.png",
"frame": { "x": 115, "y": 0, "w": 58, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 3, "w": 58, "h": 65 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0020.png",
"frame": { "x": 171, "y": 66, "w": 58, "h": 64 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 4, "w": 58, "h": 64 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0021.png",
"frame": { "x": 229, "y": 66, "w": 58, "h": 64 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 4, "w": 58, "h": 64 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0022.png",
"frame": { "x": 287, "y": 66, "w": 58, "h": 64 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 4, "w": 58, "h": 64 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0023.png",
"frame": { "x": 171, "y": 130, "w": 58, "h": 64 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 4, "w": 58, "h": 64 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0024.png",
"frame": { "x": 229, "y": 130, "w": 58, "h": 64 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 4, "w": 58, "h": 64 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0025.png",
"frame": { "x": 0, "y": 67, "w": 57, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 3, "w": 57, "h": 65 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0026.png",
"frame": { "x": 287, "y": 0, "w": 57, "h": 66 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 2, "w": 57, "h": 66 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0027.png",
"frame": { "x": 57, "y": 65, "w": 57, "h": 66 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 57, "h": 66 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0028.png",
"frame": { "x": 114, "y": 65, "w": 57, "h": 66 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 57, "h": 66 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0029.png",
"frame": { "x": 0, "y": 0, "w": 57, "h": 67 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 1, "w": 57, "h": 67 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0030.png",
"frame": { "x": 173, "y": 0, "w": 57, "h": 66 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 57, "h": 66 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0031.png",
"frame": { "x": 230, "y": 0, "w": 57, "h": 66 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 2, "w": 57, "h": 66 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0032.png",
"frame": { "x": 57, "y": 0, "w": 58, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 3, "w": 58, "h": 65 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0033.png",
"frame": { "x": 115, "y": 0, "w": 58, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 3, "w": 58, "h": 65 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0034.png",
"frame": { "x": 171, "y": 66, "w": 58, "h": 64 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 4, "w": 58, "h": 64 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0035.png",
"frame": { "x": 229, "y": 66, "w": 58, "h": 64 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 4, "w": 58, "h": 64 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0036.png",
"frame": { "x": 287, "y": 66, "w": 58, "h": 64 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 4, "w": 58, "h": 64 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0037.png",
"frame": { "x": 171, "y": 130, "w": 58, "h": 64 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 4, "w": 58, "h": 64 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0038.png",
"frame": { "x": 229, "y": 130, "w": 58, "h": 64 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 4, "w": 58, "h": 64 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0039.png",
"frame": { "x": 0, "y": 67, "w": 57, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 3, "w": 57, "h": 65 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0040.png",
"frame": { "x": 287, "y": 0, "w": 57, "h": 66 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 2, "w": 57, "h": 66 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0041.png",
"frame": { "x": 57, "y": 65, "w": 57, "h": 66 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 57, "h": 66 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0042.png",
"frame": { "x": 114, "y": 65, "w": 57, "h": 66 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 57, "h": 66 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0043.png",
"frame": { "x": 0, "y": 0, "w": 57, "h": 67 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 1, "w": 57, "h": 67 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0044.png",
"frame": { "x": 173, "y": 0, "w": 57, "h": 66 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 57, "h": 66 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0045.png",
"frame": { "x": 230, "y": 0, "w": 57, "h": 66 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 2, "w": 57, "h": 66 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0046.png",
"frame": { "x": 57, "y": 0, "w": 58, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 3, "w": 58, "h": 65 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0047.png",
"frame": { "x": 115, "y": 0, "w": 58, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 3, "w": 58, "h": 65 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0048.png",
"frame": { "x": 171, "y": 66, "w": 58, "h": 64 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 4, "w": 58, "h": 64 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0049.png",
"frame": { "x": 229, "y": 66, "w": 58, "h": 64 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 4, "w": 58, "h": 64 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0050.png",
"frame": { "x": 287, "y": 66, "w": 58, "h": 64 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 4, "w": 58, "h": 64 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0051.png",
"frame": { "x": 171, "y": 130, "w": 58, "h": 64 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 4, "w": 58, "h": 64 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0052.png",
"frame": { "x": 229, "y": 130, "w": 58, "h": 64 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 4, "w": 58, "h": 64 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0053.png",
"frame": { "x": 0, "y": 67, "w": 57, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 3, "w": 57, "h": 65 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0054.png",
"frame": { "x": 287, "y": 0, "w": 57, "h": 66 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 2, "w": 57, "h": 66 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0055.png",
"frame": { "x": 57, "y": 65, "w": 57, "h": 66 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 57, "h": 66 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0056.png",
"frame": { "x": 114, "y": 65, "w": 57, "h": 66 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 57, "h": 66 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0057.png",
"frame": { "x": 287, "y": 130, "w": 56, "h": 66 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 2, "w": 56, "h": 66 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0058.png",
"frame": { "x": 57, "y": 131, "w": 56, "h": 66 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 3, "w": 56, "h": 66 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0059.png",
"frame": { "x": 164, "y": 261, "w": 56, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 3, "w": 56, "h": 65 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0060.png",
"frame": { "x": 0, "y": 327, "w": 56, "h": 64 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 4, "w": 56, "h": 64 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0061.png",
"frame": { "x": 56, "y": 327, "w": 56, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 4, "w": 56, "h": 63 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0062.png",
"frame": { "x": 169, "y": 329, "w": 57, "h": 62 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 5, "w": 57, "h": 62 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0063.png",
"frame": { "x": 112, "y": 326, "w": 57, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 57, "h": 63 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0064.png",
"frame": { "x": 54, "y": 265, "w": 58, "h": 62 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 5, "w": 58, "h": 62 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0065.png",
"frame": { "x": 226, "y": 332, "w": 56, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 4, "w": 56, "h": 63 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0066.png",
"frame": { "x": 220, "y": 261, "w": 53, "h": 68 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 0, "w": 53, "h": 68 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0067.png",
"frame": { "x": 273, "y": 264, "w": 53, "h": 68 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 0, "w": 53, "h": 68 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0068.png",
"frame": { "x": 279, "y": 196, "w": 54, "h": 68 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 6, "y": 0, "w": 54, "h": 68 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0069.png",
"frame": { "x": 56, "y": 197, "w": 54, "h": 68 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 6, "y": 0, "w": 54, "h": 68 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0070.png",
"frame": { "x": 110, "y": 197, "w": 54, "h": 68 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 6, "y": 0, "w": 54, "h": 68 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0071.png",
"frame": { "x": 0, "y": 198, "w": 54, "h": 68 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 6, "y": 0, "w": 54, "h": 68 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0072.png",
"frame": { "x": 169, "y": 194, "w": 55, "h": 67 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 5, "y": 1, "w": 55, "h": 67 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0073.png",
"frame": { "x": 224, "y": 194, "w": 55, "h": 67 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 4, "y": 1, "w": 55, "h": 67 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0074.png",
"frame": { "x": 0, "y": 132, "w": 56, "h": 66 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 2, "w": 56, "h": 66 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
{
"filename": "0075.png",
"frame": { "x": 113, "y": 131, "w": 56, "h": 66 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 2, "w": 56, "h": 66 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
}
],
"meta": {
"app": "https://www.aseprite.org/",
"version": "1.3.12-x64",
"image": "718-10.png",
"format": "I8",
"size": { "w": 345, "h": 395 },
"scale": "1"
}
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 737 B

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -1,41 +1,803 @@
{ { "frames": [
"textures": [ {
{ "filename": "0001.png",
"image": "718.png", "frame": { "x": 294, "y": 438, "w": 72, "h": 88 },
"format": "RGBA8888", "rotated": false,
"size": { "trimmed": true,
"w": 88, "spriteSourceSize": { "x": 7, "y": 3, "w": 72, "h": 88 },
"h": 88 "sourceSize": { "w": 88, "h": 92 },
}, "duration": 100
"scale": 1, },
"frames": [ {
{ "filename": "0002.png",
"filename": "0001.png", "frame": { "x": 0, "y": 442, "w": 71, "h": 88 },
"rotated": false, "rotated": false,
"trimmed": false, "trimmed": true,
"sourceSize": { "spriteSourceSize": { "x": 7, "y": 3, "w": 71, "h": 88 },
"w": 72, "sourceSize": { "w": 88, "h": 92 },
"h": 88 "duration": 100
}, },
"spriteSourceSize": { {
"x": 0, "filename": "0003.png",
"y": 0, "frame": { "x": 437, "y": 441, "w": 71, "h": 88 },
"w": 72, "rotated": false,
"h": 88 "trimmed": true,
}, "spriteSourceSize": { "x": 6, "y": 3, "w": 71, "h": 88 },
"frame": { "sourceSize": { "w": 88, "h": 92 },
"x": 0, "duration": 100
"y": 0, },
"w": 72, {
"h": 88 "filename": "0004.png",
} "frame": { "x": 145, "y": 441, "w": 71, "h": 88 },
} "rotated": false,
] "trimmed": true,
} "spriteSourceSize": { "x": 6, "y": 3, "w": 71, "h": 88 },
], "sourceSize": { "w": 88, "h": 92 },
"meta": { "duration": 100
"app": "https://www.codeandweb.com/texturepacker", },
"version": "3.0", {
"smartupdate": "$TexturePacker:SmartUpdate:c521b0d088429d6fd0d1d291823b7881:a063fa0268f5006b3587b06e3245db2a:7b4a06b06cbac24b3f39727b0238661b$" "filename": "0005.png",
} "frame": { "x": 366, "y": 440, "w": 71, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 6, "y": 3, "w": 71, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0006.png",
"frame": { "x": 223, "y": 267, "w": 73, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 4, "y": 4, "w": 73, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0007.png",
"frame": { "x": 296, "y": 350, "w": 73, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 4, "w": 73, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0008.png",
"frame": { "x": 384, "y": 177, "w": 75, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 75, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0009.png",
"frame": { "x": 459, "y": 177, "w": 75, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 4, "w": 75, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0010.png",
"frame": { "x": 452, "y": 265, "w": 74, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 74, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0011.png",
"frame": { "x": 76, "y": 178, "w": 75, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 75, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0012.png",
"frame": { "x": 233, "y": 90, "w": 75, "h": 89 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 3, "w": 75, "h": 89 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0013.png",
"frame": { "x": 151, "y": 178, "w": 75, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 4, "y": 3, "w": 75, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0014.png",
"frame": { "x": 0, "y": 179, "w": 75, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 5, "y": 3, "w": 75, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0015.png",
"frame": { "x": 75, "y": 266, "w": 74, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 6, "y": 3, "w": 74, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0016.png",
"frame": { "x": 369, "y": 352, "w": 73, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 3, "w": 73, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0017.png",
"frame": { "x": 294, "y": 438, "w": 72, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 3, "w": 72, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0018.png",
"frame": { "x": 0, "y": 442, "w": 71, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 3, "w": 71, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0019.png",
"frame": { "x": 437, "y": 441, "w": 71, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 6, "y": 3, "w": 71, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0020.png",
"frame": { "x": 145, "y": 441, "w": 71, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 6, "y": 3, "w": 71, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0021.png",
"frame": { "x": 366, "y": 440, "w": 71, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 6, "y": 3, "w": 71, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0022.png",
"frame": { "x": 223, "y": 267, "w": 73, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 4, "y": 4, "w": 73, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0023.png",
"frame": { "x": 296, "y": 350, "w": 73, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 4, "w": 73, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0024.png",
"frame": { "x": 384, "y": 177, "w": 75, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 75, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0025.png",
"frame": { "x": 459, "y": 177, "w": 75, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 4, "w": 75, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0026.png",
"frame": { "x": 452, "y": 265, "w": 74, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 74, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0027.png",
"frame": { "x": 76, "y": 178, "w": 75, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 75, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0028.png",
"frame": { "x": 233, "y": 90, "w": 75, "h": 89 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 3, "w": 75, "h": 89 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0029.png",
"frame": { "x": 151, "y": 178, "w": 75, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 4, "y": 3, "w": 75, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0030.png",
"frame": { "x": 0, "y": 179, "w": 75, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 5, "y": 3, "w": 75, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0031.png",
"frame": { "x": 75, "y": 266, "w": 74, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 6, "y": 3, "w": 74, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0032.png",
"frame": { "x": 369, "y": 352, "w": 73, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 3, "w": 73, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0033.png",
"frame": { "x": 294, "y": 438, "w": 72, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 3, "w": 72, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0034.png",
"frame": { "x": 0, "y": 442, "w": 71, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 3, "w": 71, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0035.png",
"frame": { "x": 437, "y": 441, "w": 71, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 6, "y": 3, "w": 71, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0036.png",
"frame": { "x": 145, "y": 441, "w": 71, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 6, "y": 3, "w": 71, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0037.png",
"frame": { "x": 366, "y": 440, "w": 71, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 6, "y": 3, "w": 71, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0038.png",
"frame": { "x": 223, "y": 267, "w": 73, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 4, "y": 4, "w": 73, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0039.png",
"frame": { "x": 296, "y": 350, "w": 73, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 4, "w": 73, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0040.png",
"frame": { "x": 384, "y": 177, "w": 75, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 75, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0041.png",
"frame": { "x": 459, "y": 177, "w": 75, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 4, "w": 75, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0042.png",
"frame": { "x": 452, "y": 265, "w": 74, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 74, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0043.png",
"frame": { "x": 76, "y": 178, "w": 75, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 75, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0044.png",
"frame": { "x": 233, "y": 90, "w": 75, "h": 89 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 3, "w": 75, "h": 89 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0045.png",
"frame": { "x": 151, "y": 178, "w": 75, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 4, "y": 3, "w": 75, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0046.png",
"frame": { "x": 0, "y": 179, "w": 75, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 5, "y": 3, "w": 75, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0047.png",
"frame": { "x": 75, "y": 266, "w": 74, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 6, "y": 3, "w": 74, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0048.png",
"frame": { "x": 369, "y": 352, "w": 73, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 3, "w": 73, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0049.png",
"frame": { "x": 294, "y": 438, "w": 72, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 3, "w": 72, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0050.png",
"frame": { "x": 0, "y": 442, "w": 71, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 3, "w": 71, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0051.png",
"frame": { "x": 437, "y": 441, "w": 71, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 6, "y": 3, "w": 71, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0052.png",
"frame": { "x": 145, "y": 441, "w": 71, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 6, "y": 3, "w": 71, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0053.png",
"frame": { "x": 366, "y": 440, "w": 71, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 6, "y": 3, "w": 71, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0054.png",
"frame": { "x": 223, "y": 267, "w": 73, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 4, "y": 4, "w": 73, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0055.png",
"frame": { "x": 296, "y": 350, "w": 73, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 4, "w": 73, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0056.png",
"frame": { "x": 384, "y": 177, "w": 75, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 75, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0057.png",
"frame": { "x": 459, "y": 177, "w": 75, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 4, "w": 75, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0058.png",
"frame": { "x": 452, "y": 265, "w": 74, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 74, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0059.png",
"frame": { "x": 76, "y": 178, "w": 75, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 75, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0060.png",
"frame": { "x": 233, "y": 90, "w": 75, "h": 89 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 3, "w": 75, "h": 89 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0061.png",
"frame": { "x": 151, "y": 178, "w": 75, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 4, "y": 3, "w": 75, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0062.png",
"frame": { "x": 0, "y": 179, "w": 75, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 5, "y": 3, "w": 75, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0063.png",
"frame": { "x": 75, "y": 266, "w": 74, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 6, "y": 3, "w": 74, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0064.png",
"frame": { "x": 369, "y": 352, "w": 73, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 3, "w": 73, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0065.png",
"frame": { "x": 222, "y": 355, "w": 72, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 3, "w": 72, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0066.png",
"frame": { "x": 73, "y": 354, "w": 72, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 3, "w": 72, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0067.png",
"frame": { "x": 149, "y": 353, "w": 73, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 6, "y": 3, "w": 73, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0068.png",
"frame": { "x": 442, "y": 353, "w": 73, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 6, "y": 3, "w": 73, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0069.png",
"frame": { "x": 149, "y": 266, "w": 74, "h": 87 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 5, "y": 4, "w": 74, "h": 87 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0070.png",
"frame": { "x": 377, "y": 265, "w": 75, "h": 87 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 4, "y": 4, "w": 75, "h": 87 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0071.png",
"frame": { "x": 308, "y": 177, "w": 76, "h": 87 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 4, "w": 76, "h": 87 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0072.png",
"frame": { "x": 76, "y": 91, "w": 76, "h": 87 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 4, "w": 76, "h": 87 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0073.png",
"frame": { "x": 301, "y": 264, "w": 76, "h": 86 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 5, "w": 76, "h": 86 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0074.png",
"frame": { "x": 0, "y": 267, "w": 74, "h": 87 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 6, "y": 4, "w": 74, "h": 87 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0075.png",
"frame": { "x": 0, "y": 90, "w": 76, "h": 89 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 2, "w": 76, "h": 89 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0076.png",
"frame": { "x": 391, "y": 88, "w": 77, "h": 89 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 2, "w": 77, "h": 89 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0077.png",
"frame": { "x": 79, "y": 0, "w": 78, "h": 91 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 0, "w": 78, "h": 91 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0078.png",
"frame": { "x": 468, "y": 88, "w": 77, "h": 89 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 2, "w": 77, "h": 89 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0079.png",
"frame": { "x": 157, "y": 0, "w": 78, "h": 90 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 1, "w": 78, "h": 90 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0080.png",
"frame": { "x": 313, "y": 0, "w": 78, "h": 89 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 2, "w": 78, "h": 89 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0081.png",
"frame": { "x": 0, "y": 0, "w": 79, "h": 90 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 1, "w": 79, "h": 90 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0082.png",
"frame": { "x": 391, "y": 0, "w": 78, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 3, "w": 78, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0083.png",
"frame": { "x": 235, "y": 0, "w": 78, "h": 90 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 1, "w": 78, "h": 90 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0084.png",
"frame": { "x": 469, "y": 0, "w": 78, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 3, "w": 78, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0085.png",
"frame": { "x": 313, "y": 89, "w": 77, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 3, "w": 77, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0086.png",
"frame": { "x": 157, "y": 90, "w": 76, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 3, "w": 76, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0087.png",
"frame": { "x": 226, "y": 179, "w": 75, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 3, "w": 75, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
{
"filename": "0088.png",
"frame": { "x": 0, "y": 354, "w": 73, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 3, "w": 73, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
}
],
"meta": {
"app": "https://www.aseprite.org/",
"version": "1.3.12-x64",
"image": "718.png",
"format": "I8",
"size": { "w": 547, "h": 530 },
"scale": "1"
}
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 37 KiB

View File

@ -1,41 +1,875 @@
{ { "frames": [
"textures": [ {
{ "filename": "0001.png",
"image": "719.png", "frame": { "x": 0, "y": 0, "w": 41, "h": 70 },
"format": "RGBA8888", "rotated": false,
"size": { "trimmed": true,
"w": 70, "spriteSourceSize": { "x": 8, "y": 11, "w": 41, "h": 70 },
"h": 70 "sourceSize": { "w": 63, "h": 81 },
}, "duration": 100
"scale": 1, },
"frames": [ {
{ "filename": "0002.png",
"filename": "0001.png", "frame": { "x": 43, "y": 0, "w": 41, "h": 70 },
"rotated": false, "rotated": false,
"trimmed": false, "trimmed": true,
"sourceSize": { "spriteSourceSize": { "x": 8, "y": 10, "w": 41, "h": 70 },
"w": 41, "sourceSize": { "w": 63, "h": 81 },
"h": 70 "duration": 100
}, },
"spriteSourceSize": { {
"x": 0, "filename": "0003.png",
"y": 0, "frame": { "x": 86, "y": 0, "w": 41, "h": 70 },
"w": 41, "rotated": false,
"h": 70 "trimmed": true,
}, "spriteSourceSize": { "x": 8, "y": 8, "w": 41, "h": 70 },
"frame": { "sourceSize": { "w": 63, "h": 81 },
"x": 0, "duration": 100
"y": 0, },
"w": 41, {
"h": 70 "filename": "0004.png",
} "frame": { "x": 129, "y": 0, "w": 41, "h": 70 },
} "rotated": false,
] "trimmed": true,
} "spriteSourceSize": { "x": 8, "y": 7, "w": 41, "h": 70 },
], "sourceSize": { "w": 63, "h": 81 },
"meta": { "duration": 100
"app": "https://www.codeandweb.com/texturepacker", },
"version": "3.0", {
"smartupdate": "$TexturePacker:SmartUpdate:2444999ec5c861d795baf2a948bfbf12:226dba2be6e002f00cb5559f02986b41:17a705bb924916761be2495822a53735$" "filename": "0005.png",
} "frame": { "x": 172, "y": 0, "w": 41, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 6, "w": 41, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0006.png",
"frame": { "x": 42, "y": 144, "w": 39, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 4, "w": 39, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0007.png",
"frame": { "x": 0, "y": 216, "w": 38, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 3, "w": 38, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0008.png",
"frame": { "x": 40, "y": 216, "w": 38, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 4, "w": 38, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0009.png",
"frame": { "x": 83, "y": 144, "w": 39, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 5, "w": 39, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0010.png",
"frame": { "x": 124, "y": 144, "w": 39, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 7, "w": 39, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0011.png",
"frame": { "x": 86, "y": 72, "w": 40, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 9, "w": 40, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0012.png",
"frame": { "x": 215, "y": 0, "w": 41, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 10, "w": 41, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0013.png",
"frame": { "x": 0, "y": 0, "w": 41, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 11, "w": 41, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0014.png",
"frame": { "x": 43, "y": 0, "w": 41, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 10, "w": 41, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0015.png",
"frame": { "x": 86, "y": 0, "w": 41, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 8, "w": 41, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0016.png",
"frame": { "x": 129, "y": 0, "w": 41, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 7, "w": 41, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0017.png",
"frame": { "x": 172, "y": 0, "w": 41, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 6, "w": 41, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0018.png",
"frame": { "x": 42, "y": 144, "w": 39, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 4, "w": 39, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0019.png",
"frame": { "x": 0, "y": 216, "w": 38, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 3, "w": 38, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0020.png",
"frame": { "x": 40, "y": 216, "w": 38, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 4, "w": 38, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0021.png",
"frame": { "x": 83, "y": 144, "w": 39, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 5, "w": 39, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0022.png",
"frame": { "x": 124, "y": 144, "w": 39, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 7, "w": 39, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0023.png",
"frame": { "x": 86, "y": 72, "w": 40, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 9, "w": 40, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0024.png",
"frame": { "x": 215, "y": 0, "w": 41, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 10, "w": 41, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0025.png",
"frame": { "x": 0, "y": 0, "w": 41, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 11, "w": 41, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0026.png",
"frame": { "x": 43, "y": 0, "w": 41, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 10, "w": 41, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0027.png",
"frame": { "x": 86, "y": 0, "w": 41, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 8, "w": 41, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0028.png",
"frame": { "x": 129, "y": 0, "w": 41, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 7, "w": 41, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0029.png",
"frame": { "x": 172, "y": 0, "w": 41, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 6, "w": 41, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0030.png",
"frame": { "x": 42, "y": 144, "w": 39, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 4, "w": 39, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0031.png",
"frame": { "x": 0, "y": 216, "w": 38, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 3, "w": 38, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0032.png",
"frame": { "x": 40, "y": 216, "w": 38, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 4, "w": 38, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0033.png",
"frame": { "x": 83, "y": 144, "w": 39, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 5, "w": 39, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0034.png",
"frame": { "x": 124, "y": 144, "w": 39, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 7, "w": 39, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0035.png",
"frame": { "x": 86, "y": 72, "w": 40, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 9, "w": 40, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0036.png",
"frame": { "x": 215, "y": 0, "w": 41, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 10, "w": 41, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0037.png",
"frame": { "x": 0, "y": 0, "w": 41, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 11, "w": 41, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0038.png",
"frame": { "x": 43, "y": 0, "w": 41, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 10, "w": 41, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0039.png",
"frame": { "x": 86, "y": 0, "w": 41, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 8, "w": 41, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0040.png",
"frame": { "x": 129, "y": 0, "w": 41, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 7, "w": 41, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0041.png",
"frame": { "x": 172, "y": 0, "w": 41, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 6, "w": 41, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0042.png",
"frame": { "x": 42, "y": 144, "w": 39, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 4, "w": 39, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0043.png",
"frame": { "x": 0, "y": 216, "w": 38, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 3, "w": 38, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0044.png",
"frame": { "x": 40, "y": 216, "w": 38, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 4, "w": 38, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0045.png",
"frame": { "x": 83, "y": 144, "w": 39, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 5, "w": 39, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0046.png",
"frame": { "x": 124, "y": 144, "w": 39, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 7, "w": 39, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0047.png",
"frame": { "x": 86, "y": 72, "w": 40, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 9, "w": 40, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0048.png",
"frame": { "x": 215, "y": 0, "w": 41, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 10, "w": 41, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0049.png",
"frame": { "x": 0, "y": 0, "w": 41, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 11, "w": 41, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0050.png",
"frame": { "x": 128, "y": 72, "w": 40, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 9, "w": 40, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0051.png",
"frame": { "x": 170, "y": 72, "w": 40, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 5, "y": 7, "w": 40, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0052.png",
"frame": { "x": 80, "y": 216, "w": 38, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 5, "y": 6, "w": 38, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0053.png",
"frame": { "x": 120, "y": 216, "w": 38, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 4, "w": 38, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0054.png",
"frame": { "x": 237, "y": 288, "w": 37, "h": 69 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 37, "h": 69 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0055.png",
"frame": { "x": 198, "y": 288, "w": 37, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 0, "w": 37, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0056.png",
"frame": { "x": 237, "y": 359, "w": 35, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 1, "w": 35, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0057.png",
"frame": { "x": 120, "y": 288, "w": 37, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 3, "w": 37, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0058.png",
"frame": { "x": 160, "y": 216, "w": 38, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 4, "y": 5, "w": 38, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0059.png",
"frame": { "x": 165, "y": 144, "w": 39, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 8, "w": 39, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0060.png",
"frame": { "x": 212, "y": 72, "w": 40, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 10, "w": 40, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0061.png",
"frame": { "x": 0, "y": 0, "w": 41, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 11, "w": 41, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0062.png",
"frame": { "x": 0, "y": 72, "w": 41, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 10, "w": 41, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0063.png",
"frame": { "x": 0, "y": 144, "w": 40, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 14, "y": 9, "w": 40, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0064.png",
"frame": { "x": 206, "y": 144, "w": 39, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 16, "y": 8, "w": 39, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0065.png",
"frame": { "x": 200, "y": 216, "w": 38, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 20, "y": 6, "w": 38, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0066.png",
"frame": { "x": 240, "y": 216, "w": 38, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 23, "y": 5, "w": 38, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0067.png",
"frame": { "x": 0, "y": 288, "w": 38, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 25, "y": 4, "w": 38, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0068.png",
"frame": { "x": 159, "y": 288, "w": 37, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 24, "y": 4, "w": 37, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0069.png",
"frame": { "x": 40, "y": 288, "w": 38, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 21, "y": 6, "w": 38, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0070.png",
"frame": { "x": 80, "y": 288, "w": 38, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 18, "y": 7, "w": 38, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0071.png",
"frame": { "x": 248, "y": 144, "w": 39, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 13, "y": 9, "w": 39, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0072.png",
"frame": { "x": 43, "y": 72, "w": 41, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 11, "w": 41, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0073.png",
"frame": { "x": 0, "y": 0, "w": 41, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 11, "w": 41, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0074.png",
"frame": { "x": 128, "y": 72, "w": 40, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 9, "w": 40, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0075.png",
"frame": { "x": 170, "y": 72, "w": 40, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 5, "y": 7, "w": 40, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0076.png",
"frame": { "x": 80, "y": 216, "w": 38, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 5, "y": 6, "w": 38, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0077.png",
"frame": { "x": 120, "y": 216, "w": 38, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 4, "w": 38, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0078.png",
"frame": { "x": 237, "y": 288, "w": 37, "h": 69 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 37, "h": 69 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0079.png",
"frame": { "x": 198, "y": 288, "w": 37, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 0, "w": 37, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0080.png",
"frame": { "x": 237, "y": 359, "w": 35, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 1, "w": 35, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0081.png",
"frame": { "x": 120, "y": 288, "w": 37, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 3, "w": 37, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0082.png",
"frame": { "x": 160, "y": 216, "w": 38, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 4, "y": 5, "w": 38, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0083.png",
"frame": { "x": 165, "y": 144, "w": 39, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 8, "w": 39, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0084.png",
"frame": { "x": 212, "y": 72, "w": 40, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 10, "w": 40, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0085.png",
"frame": { "x": 0, "y": 0, "w": 41, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 11, "w": 41, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0086.png",
"frame": { "x": 0, "y": 72, "w": 41, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 10, "w": 41, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0087.png",
"frame": { "x": 0, "y": 144, "w": 40, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 14, "y": 9, "w": 40, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0088.png",
"frame": { "x": 206, "y": 144, "w": 39, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 16, "y": 8, "w": 39, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0089.png",
"frame": { "x": 200, "y": 216, "w": 38, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 20, "y": 6, "w": 38, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0090.png",
"frame": { "x": 240, "y": 216, "w": 38, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 23, "y": 5, "w": 38, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0091.png",
"frame": { "x": 0, "y": 288, "w": 38, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 25, "y": 4, "w": 38, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0092.png",
"frame": { "x": 159, "y": 288, "w": 37, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 24, "y": 4, "w": 37, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0093.png",
"frame": { "x": 40, "y": 288, "w": 38, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 21, "y": 6, "w": 38, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0094.png",
"frame": { "x": 80, "y": 288, "w": 38, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 18, "y": 7, "w": 38, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0095.png",
"frame": { "x": 248, "y": 144, "w": 39, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 13, "y": 9, "w": 39, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
{
"filename": "0096.png",
"frame": { "x": 43, "y": 72, "w": 41, "h": 70 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 11, "w": 41, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
}
],
"meta": {
"app": "https://www.aseprite.org/",
"version": "1.3.12-x64",
"image": "719.png",
"format": "I8",
"size": { "w": 287, "h": 429 },
"scale": "1"
}
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 817 B

After

Width:  |  Height:  |  Size: 9.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -1,19 +1,19 @@
{ "frames": [ { "frames": [
{ {
"filename": "0001.png", "filename": "0001.png",
"frame": { "x": 0, "y": 0, "w": 77, "h": 77 }, "frame": { "x": 0, "y": 0, "w": 77, "h": 65 },
"rotated": false, "rotated": false,
"trimmed": false, "trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 77, "h": 77 }, "spriteSourceSize": { "x": 0, "y": 0, "w": 77, "h": 65 },
"sourceSize": { "w": 77, "h": 77 }, "sourceSize": { "w": 77, "h": 65 },
"duration": 100 "duration": 100
} }
], ],
"meta": { "meta": {
"app": "https://www.aseprite.org/", "app": "https://www.aseprite.org/",
"version": "1.3.7-x64", "version": "1.3.9.2-x64",
"format": "I8", "format": "I8",
"size": { "w": 77, "h": 77 }, "size": { "w": 77, "h": 65 },
"scale": "1" "scale": "1"
} }
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 899 B

After

Width:  |  Height:  |  Size: 890 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 994 B

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 910 B

After

Width:  |  Height:  |  Size: 949 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 906 B

After

Width:  |  Height:  |  Size: 953 B

View File

@ -1,41 +0,0 @@
{
"textures": [
{
"image": "668-female.png",
"format": "RGBA8888",
"size": {
"w": 74,
"h": 74
},
"scale": 1,
"frames": [
{
"filename": "0001.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 74,
"h": 72
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 74,
"h": 72
},
"frame": {
"x": 0,
"y": 0,
"w": 74,
"h": 72
}
}
]
}
],
"meta": {
"app": "https://www.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:3b22b1fc8fabd22888048f909287acba:10bec1e42fb1d39868a624d00345818d:d99ed0e84a0695b54e479aa98271aba1$"
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 791 B

View File

@ -1,41 +1,506 @@
{ { "frames": [
"textures": [ {
{ "filename": "0001.png",
"image": "674.png", "frame": { "x": 58, "y": 40, "w": 27, "h": 42 },
"format": "RGBA8888", "rotated": false,
"size": { "trimmed": true,
"w": 42, "spriteSourceSize": { "x": 2, "y": 0, "w": 27, "h": 42 },
"h": 42 "sourceSize": { "w": 29, "h": 42 },
}, "duration": 140
"scale": 1, },
"frames": [ {
{ "filename": "0002.png",
"filename": "0001.png", "frame": { "x": 85, "y": 41, "w": 27, "h": 41 },
"rotated": false, "rotated": false,
"trimmed": false, "trimmed": true,
"sourceSize": { "spriteSourceSize": { "x": 2, "y": 1, "w": 27, "h": 41 },
"w": 27, "sourceSize": { "w": 29, "h": 42 },
"h": 42 "duration": 70
}, },
"spriteSourceSize": { {
"x": 0, "filename": "0003.png",
"y": 0, "frame": { "x": 27, "y": 80, "w": 27, "h": 40 },
"w": 27, "rotated": false,
"h": 42 "trimmed": true,
}, "spriteSourceSize": { "x": 2, "y": 2, "w": 27, "h": 40 },
"frame": { "sourceSize": { "w": 29, "h": 42 },
"x": 0, "duration": 140
"y": 0, },
"w": 27, {
"h": 42 "filename": "0004.png",
} "frame": { "x": 81, "y": 82, "w": 27, "h": 39 },
} "rotated": false,
] "trimmed": true,
} "spriteSourceSize": { "x": 2, "y": 3, "w": 27, "h": 39 },
], "sourceSize": { "w": 29, "h": 42 },
"meta": { "duration": 210
"app": "https://www.codeandweb.com/texturepacker", },
"version": "3.0", {
"smartupdate": "$TexturePacker:SmartUpdate:1fb0fb4f4e63f6114c7490a9d4d536dc:9830bfa81d721fc889ca0580935f03e3:b823d10f1c9b4d501296982088ba63d6$" "filename": "0005.png",
} "frame": { "x": 27, "y": 80, "w": 27, "h": 40 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 27, "h": 40 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0006.png",
"frame": { "x": 85, "y": 41, "w": 27, "h": 41 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 1, "w": 27, "h": 41 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0007.png",
"frame": { "x": 58, "y": 40, "w": 27, "h": 42 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 0, "w": 27, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0008.png",
"frame": { "x": 85, "y": 41, "w": 27, "h": 41 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 1, "w": 27, "h": 41 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 70
},
{
"filename": "0009.png",
"frame": { "x": 27, "y": 80, "w": 27, "h": 40 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 27, "h": 40 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0010.png",
"frame": { "x": 81, "y": 82, "w": 27, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 3, "w": 27, "h": 39 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 210
},
{
"filename": "0011.png",
"frame": { "x": 27, "y": 80, "w": 27, "h": 40 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 27, "h": 40 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0012.png",
"frame": { "x": 85, "y": 41, "w": 27, "h": 41 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 1, "w": 27, "h": 41 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0013.png",
"frame": { "x": 58, "y": 40, "w": 27, "h": 42 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 0, "w": 27, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0014.png",
"frame": { "x": 85, "y": 41, "w": 27, "h": 41 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 1, "w": 27, "h": 41 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 70
},
{
"filename": "0015.png",
"frame": { "x": 27, "y": 80, "w": 27, "h": 40 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 27, "h": 40 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0016.png",
"frame": { "x": 81, "y": 82, "w": 27, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 3, "w": 27, "h": 39 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 210
},
{
"filename": "0017.png",
"frame": { "x": 27, "y": 80, "w": 27, "h": 40 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 27, "h": 40 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0018.png",
"frame": { "x": 85, "y": 41, "w": 27, "h": 41 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 1, "w": 27, "h": 41 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0019.png",
"frame": { "x": 58, "y": 40, "w": 27, "h": 42 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 0, "w": 27, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0020.png",
"frame": { "x": 85, "y": 41, "w": 27, "h": 41 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 1, "w": 27, "h": 41 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 70
},
{
"filename": "0021.png",
"frame": { "x": 27, "y": 80, "w": 27, "h": 40 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 27, "h": 40 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0022.png",
"frame": { "x": 81, "y": 82, "w": 27, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 3, "w": 27, "h": 39 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 210
},
{
"filename": "0023.png",
"frame": { "x": 27, "y": 80, "w": 27, "h": 40 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 27, "h": 40 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0024.png",
"frame": { "x": 85, "y": 41, "w": 27, "h": 41 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 1, "w": 27, "h": 41 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0025.png",
"frame": { "x": 58, "y": 40, "w": 27, "h": 42 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 0, "w": 27, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0026.png",
"frame": { "x": 85, "y": 41, "w": 27, "h": 41 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 1, "w": 27, "h": 41 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 70
},
{
"filename": "0027.png",
"frame": { "x": 27, "y": 80, "w": 27, "h": 40 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 27, "h": 40 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0028.png",
"frame": { "x": 81, "y": 82, "w": 27, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 3, "w": 27, "h": 39 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 210
},
{
"filename": "0029.png",
"frame": { "x": 27, "y": 80, "w": 27, "h": 40 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 27, "h": 40 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0030.png",
"frame": { "x": 85, "y": 41, "w": 27, "h": 41 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 1, "w": 27, "h": 41 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0031.png",
"frame": { "x": 58, "y": 40, "w": 27, "h": 42 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 0, "w": 27, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0032.png",
"frame": { "x": 0, "y": 42, "w": 27, "h": 41 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 1, "w": 27, "h": 41 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 70
},
{
"filename": "0033.png",
"frame": { "x": 54, "y": 82, "w": 27, "h": 40 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 27, "h": 40 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0034.png",
"frame": { "x": 0, "y": 83, "w": 27, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 3, "w": 27, "h": 39 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 210
},
{
"filename": "0035.png",
"frame": { "x": 54, "y": 82, "w": 27, "h": 40 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 27, "h": 40 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0036.png",
"frame": { "x": 87, "y": 0, "w": 28, "h": 41 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 1, "w": 28, "h": 41 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0037.png",
"frame": { "x": 0, "y": 0, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0038.png",
"frame": { "x": 29, "y": 0, "w": 29, "h": 41 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 1, "w": 29, "h": 41 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 70
},
{
"filename": "0039.png",
"frame": { "x": 58, "y": 0, "w": 29, "h": 40 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 2, "w": 29, "h": 40 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0040.png",
"frame": { "x": 29, "y": 41, "w": 29, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 3, "w": 29, "h": 39 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 210
},
{
"filename": "0041.png",
"frame": { "x": 58, "y": 0, "w": 29, "h": 40 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 2, "w": 29, "h": 40 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0042.png",
"frame": { "x": 29, "y": 0, "w": 29, "h": 41 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 1, "w": 29, "h": 41 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0043.png",
"frame": { "x": 0, "y": 0, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0044.png",
"frame": { "x": 29, "y": 0, "w": 29, "h": 41 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 1, "w": 29, "h": 41 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 70
},
{
"filename": "0045.png",
"frame": { "x": 58, "y": 0, "w": 29, "h": 40 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 2, "w": 29, "h": 40 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0046.png",
"frame": { "x": 29, "y": 41, "w": 29, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 3, "w": 29, "h": 39 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 210
},
{
"filename": "0047.png",
"frame": { "x": 58, "y": 0, "w": 29, "h": 40 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 2, "w": 29, "h": 40 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0048.png",
"frame": { "x": 29, "y": 0, "w": 29, "h": 41 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 1, "w": 29, "h": 41 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0049.png",
"frame": { "x": 0, "y": 0, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0050.png",
"frame": { "x": 87, "y": 0, "w": 28, "h": 41 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 1, "w": 28, "h": 41 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 70
},
{
"filename": "0051.png",
"frame": { "x": 54, "y": 82, "w": 27, "h": 40 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 27, "h": 40 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0052.png",
"frame": { "x": 81, "y": 82, "w": 27, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 3, "w": 27, "h": 39 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 210
},
{
"filename": "0053.png",
"frame": { "x": 27, "y": 80, "w": 27, "h": 40 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 27, "h": 40 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 70
},
{
"filename": "0054.png",
"frame": { "x": 85, "y": 41, "w": 27, "h": 41 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 1, "w": 27, "h": 41 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
{
"filename": "0055.png",
"frame": { "x": 58, "y": 40, "w": 27, "h": 42 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 0, "w": 27, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 70
}
],
"meta": {
"app": "https://www.aseprite.org/",
"version": "1.3.11-x64",
"image": "674.png",
"format": "I8",
"size": { "w": 115, "h": 122 },
"scale": "1"
}
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 375 B

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1,41 +1,767 @@
{ { "frames": [
"textures": [ {
{ "filename": "0001.png",
"image": "694.png", "frame": { "x": 102, "y": 163, "w": 44, "h": 37 },
"format": "RGBA8888", "rotated": false,
"size": { "trimmed": true,
"w": 44, "spriteSourceSize": { "x": 1, "y": 11, "w": 44, "h": 37 },
"h": 44 "sourceSize": { "w": 61, "h": 48 },
}, "duration": 100
"scale": 1, },
"frames": [ {
{ "filename": "0002.png",
"filename": "0001.png", "frame": { "x": 57, "y": 129, "w": 45, "h": 37 },
"rotated": false, "rotated": false,
"trimmed": false, "trimmed": true,
"sourceSize": { "spriteSourceSize": { "x": 1, "y": 11, "w": 45, "h": 37 },
"w": 44, "sourceSize": { "w": 61, "h": 48 },
"h": 37 "duration": 100
}, },
"spriteSourceSize": { {
"x": 0, "filename": "0003.png",
"y": 0, "frame": { "x": 162, "y": 127, "w": 47, "h": 37 },
"w": 44, "rotated": false,
"h": 37 "trimmed": true,
}, "spriteSourceSize": { "x": 1, "y": 11, "w": 47, "h": 37 },
"frame": { "sourceSize": { "w": 61, "h": 48 },
"x": 0, "duration": 100
"y": 0, },
"w": 44, {
"h": 37 "filename": "0004.png",
} "frame": { "x": 114, "y": 126, "w": 48, "h": 37 },
} "rotated": false,
] "trimmed": true,
} "spriteSourceSize": { "x": 1, "y": 11, "w": 48, "h": 37 },
], "sourceSize": { "w": 61, "h": 48 },
"meta": { "duration": 100
"app": "https://www.codeandweb.com/texturepacker", },
"version": "3.0", {
"smartupdate": "$TexturePacker:SmartUpdate:b35211eb8a79aa76e67039dd27e0e5a6:1905f4c2a0828a1c7c274f51d78b7e21:b0990f9650cfe63b836cbed33f0b44d8$" "filename": "0005.png",
} "frame": { "x": 283, "y": 90, "w": 49, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 49, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0006.png",
"frame": { "x": 227, "y": 126, "w": 49, "h": 36 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 12, "w": 49, "h": 36 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0007.png",
"frame": { "x": 276, "y": 127, "w": 47, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 11, "w": 47, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0008.png",
"frame": { "x": 0, "y": 132, "w": 45, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 45, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0009.png",
"frame": { "x": 132, "y": 201, "w": 43, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 43, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0010.png",
"frame": { "x": 234, "y": 201, "w": 42, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 42, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0011.png",
"frame": { "x": 0, "y": 206, "w": 42, "h": 36 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 12, "w": 42, "h": 36 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0012.png",
"frame": { "x": 44, "y": 203, "w": 43, "h": 36 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 12, "w": 43, "h": 36 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0013.png",
"frame": { "x": 276, "y": 201, "w": 43, "h": 36 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 12, "w": 43, "h": 36 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0014.png",
"frame": { "x": 89, "y": 200, "w": 43, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 43, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0015.png",
"frame": { "x": 146, "y": 164, "w": 44, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 44, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0016.png",
"frame": { "x": 102, "y": 163, "w": 44, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 44, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0017.png",
"frame": { "x": 57, "y": 129, "w": 45, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 45, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0018.png",
"frame": { "x": 162, "y": 127, "w": 47, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 47, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0019.png",
"frame": { "x": 114, "y": 126, "w": 48, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 48, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0020.png",
"frame": { "x": 283, "y": 90, "w": 49, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 49, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0021.png",
"frame": { "x": 227, "y": 126, "w": 49, "h": 36 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 12, "w": 49, "h": 36 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0022.png",
"frame": { "x": 276, "y": 127, "w": 47, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 11, "w": 47, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0023.png",
"frame": { "x": 0, "y": 132, "w": 45, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 45, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0024.png",
"frame": { "x": 132, "y": 201, "w": 43, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 43, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0025.png",
"frame": { "x": 234, "y": 201, "w": 42, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 42, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0026.png",
"frame": { "x": 0, "y": 206, "w": 42, "h": 36 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 12, "w": 42, "h": 36 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0027.png",
"frame": { "x": 44, "y": 203, "w": 43, "h": 36 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 12, "w": 43, "h": 36 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0028.png",
"frame": { "x": 276, "y": 201, "w": 43, "h": 36 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 12, "w": 43, "h": 36 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0029.png",
"frame": { "x": 89, "y": 200, "w": 43, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 43, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0030.png",
"frame": { "x": 146, "y": 164, "w": 44, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 44, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0031.png",
"frame": { "x": 102, "y": 163, "w": 44, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 44, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0032.png",
"frame": { "x": 57, "y": 129, "w": 45, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 45, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0033.png",
"frame": { "x": 162, "y": 127, "w": 47, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 47, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0034.png",
"frame": { "x": 114, "y": 126, "w": 48, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 48, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0035.png",
"frame": { "x": 283, "y": 90, "w": 49, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 49, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0036.png",
"frame": { "x": 227, "y": 126, "w": 49, "h": 36 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 12, "w": 49, "h": 36 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0037.png",
"frame": { "x": 276, "y": 127, "w": 47, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 11, "w": 47, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0038.png",
"frame": { "x": 0, "y": 132, "w": 45, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 45, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0039.png",
"frame": { "x": 132, "y": 201, "w": 43, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 43, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0040.png",
"frame": { "x": 234, "y": 201, "w": 42, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 42, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0041.png",
"frame": { "x": 0, "y": 206, "w": 42, "h": 36 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 12, "w": 42, "h": 36 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0042.png",
"frame": { "x": 44, "y": 203, "w": 43, "h": 36 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 12, "w": 43, "h": 36 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0043.png",
"frame": { "x": 276, "y": 201, "w": 43, "h": 36 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 12, "w": 43, "h": 36 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0044.png",
"frame": { "x": 89, "y": 200, "w": 43, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 43, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0045.png",
"frame": { "x": 146, "y": 164, "w": 44, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 44, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0046.png",
"frame": { "x": 102, "y": 163, "w": 44, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 44, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0047.png",
"frame": { "x": 57, "y": 129, "w": 45, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 45, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0048.png",
"frame": { "x": 162, "y": 127, "w": 47, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 47, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0049.png",
"frame": { "x": 114, "y": 126, "w": 48, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 48, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0050.png",
"frame": { "x": 283, "y": 90, "w": 49, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 49, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0051.png",
"frame": { "x": 227, "y": 126, "w": 49, "h": 36 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 12, "w": 49, "h": 36 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0052.png",
"frame": { "x": 276, "y": 127, "w": 47, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 11, "w": 47, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0053.png",
"frame": { "x": 0, "y": 132, "w": 45, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 45, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0054.png",
"frame": { "x": 132, "y": 201, "w": 43, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 43, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0055.png",
"frame": { "x": 234, "y": 201, "w": 42, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 42, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0056.png",
"frame": { "x": 0, "y": 206, "w": 42, "h": 36 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 12, "w": 42, "h": 36 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0057.png",
"frame": { "x": 44, "y": 203, "w": 43, "h": 36 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 12, "w": 43, "h": 36 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0058.png",
"frame": { "x": 276, "y": 201, "w": 43, "h": 36 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 12, "w": 43, "h": 36 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0059.png",
"frame": { "x": 89, "y": 200, "w": 43, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 43, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0060.png",
"frame": { "x": 146, "y": 164, "w": 44, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 44, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0061.png",
"frame": { "x": 102, "y": 163, "w": 44, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 44, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0062.png",
"frame": { "x": 253, "y": 164, "w": 44, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 44, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0063.png",
"frame": { "x": 297, "y": 164, "w": 44, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 44, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0064.png",
"frame": { "x": 45, "y": 166, "w": 44, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 44, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0065.png",
"frame": { "x": 209, "y": 162, "w": 44, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 44, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0066.png",
"frame": { "x": 172, "y": 90, "w": 55, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 11, "w": 55, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0067.png",
"frame": { "x": 57, "y": 90, "w": 57, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 9, "w": 57, "h": 39 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0068.png",
"frame": { "x": 117, "y": 0, "w": 58, "h": 47 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 1, "w": 58, "h": 47 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0069.png",
"frame": { "x": 59, "y": 0, "w": 58, "h": 48 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 0, "w": 58, "h": 48 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0070.png",
"frame": { "x": 0, "y": 0, "w": 59, "h": 48 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 0, "w": 59, "h": 48 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0071.png",
"frame": { "x": 232, "y": 0, "w": 58, "h": 45 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 3, "w": 58, "h": 45 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0072.png",
"frame": { "x": 232, "y": 45, "w": 57, "h": 45 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 3, "w": 57, "h": 45 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0073.png",
"frame": { "x": 175, "y": 0, "w": 57, "h": 47 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 1, "w": 57, "h": 47 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0074.png",
"frame": { "x": 289, "y": 45, "w": 57, "h": 45 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 3, "w": 57, "h": 45 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0075.png",
"frame": { "x": 117, "y": 47, "w": 57, "h": 43 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 5, "w": 57, "h": 43 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0076.png",
"frame": { "x": 290, "y": 0, "w": 58, "h": 45 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 3, "w": 58, "h": 45 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0077.png",
"frame": { "x": 174, "y": 47, "w": 57, "h": 43 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 5, "w": 57, "h": 43 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0078.png",
"frame": { "x": 58, "y": 48, "w": 57, "h": 42 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 6, "w": 57, "h": 42 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0079.png",
"frame": { "x": 0, "y": 90, "w": 57, "h": 42 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 6, "w": 57, "h": 42 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0080.png",
"frame": { "x": 0, "y": 48, "w": 58, "h": 42 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 6, "w": 58, "h": 42 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0081.png",
"frame": { "x": 114, "y": 90, "w": 58, "h": 36 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 12, "w": 58, "h": 36 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0082.png",
"frame": { "x": 227, "y": 90, "w": 56, "h": 36 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 12, "w": 56, "h": 36 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0083.png",
"frame": { "x": 0, "y": 169, "w": 44, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 11, "w": 44, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
{
"filename": "0084.png",
"frame": { "x": 190, "y": 199, "w": 44, "h": 37 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 44, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
}
],
"meta": {
"app": "https://www.aseprite.org/",
"version": "1.3.11-x64",
"image": "694.png",
"format": "I8",
"size": { "w": 348, "h": 242 },
"scale": "1"
}
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 393 B

After

Width:  |  Height:  |  Size: 9.3 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 473 B

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@ -1,41 +1,569 @@
{ { "frames": [
"textures": [ {
{ "filename": "0001.png",
"image": "703.png", "frame": { "x": 36, "y": 0, "w": 37, "h": 38 },
"format": "RGBA8888", "rotated": false,
"size": { "trimmed": true,
"w": 38, "spriteSourceSize": { "x": 2, "y": 0, "w": 37, "h": 38 },
"h": 38 "sourceSize": { "w": 40, "h": 49 },
}, "duration": 110
"scale": 1, },
"frames": [ {
{ "filename": "0002.png",
"filename": "0001.png", "frame": { "x": 73, "y": 0, "w": 37, "h": 38 },
"rotated": false, "rotated": false,
"trimmed": false, "trimmed": true,
"sourceSize": { "spriteSourceSize": { "x": 3, "y": 1, "w": 37, "h": 38 },
"w": 37, "sourceSize": { "w": 40, "h": 49 },
"h": 38 "duration": 110
}, },
"spriteSourceSize": { {
"x": 0, "filename": "0003.png",
"y": 0, "frame": { "x": 73, "y": 38, "w": 36, "h": 38 },
"w": 37, "rotated": false,
"h": 38 "trimmed": true,
}, "spriteSourceSize": { "x": 4, "y": 4, "w": 36, "h": 38 },
"frame": { "sourceSize": { "w": 40, "h": 49 },
"x": 0, "duration": 110
"y": 0, },
"w": 37, {
"h": 38 "filename": "0004.png",
} "frame": { "x": 0, "y": 40, "w": 36, "h": 38 },
} "rotated": false,
] "trimmed": true,
} "spriteSourceSize": { "x": 3, "y": 6, "w": 36, "h": 38 },
], "sourceSize": { "w": 40, "h": 49 },
"meta": { "duration": 110
"app": "https://www.codeandweb.com/texturepacker", },
"version": "3.0", {
"smartupdate": "$TexturePacker:SmartUpdate:32e6c2d8721f80aa2afd20f97c5e4cf1:2c61f7a426cd2d739241c87d6ab5ea99:721af8c322ff60159262e9b3017c784d$" "filename": "0005.png",
} "frame": { "x": 36, "y": 76, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 8, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0006.png",
"frame": { "x": 0, "y": 78, "w": 35, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 9, "w": 35, "h": 39 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0007.png",
"frame": { "x": 0, "y": 0, "w": 36, "h": 40 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 9, "w": 36, "h": 40 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0008.png",
"frame": { "x": 0, "y": 0, "w": 36, "h": 40 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 8, "w": 36, "h": 40 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0009.png",
"frame": { "x": 0, "y": 78, "w": 35, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 7, "w": 35, "h": 39 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0010.png",
"frame": { "x": 36, "y": 76, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 6, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0011.png",
"frame": { "x": 0, "y": 40, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 4, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0012.png",
"frame": { "x": 72, "y": 76, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 1, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0013.png",
"frame": { "x": 36, "y": 0, "w": 37, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 0, "w": 37, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0014.png",
"frame": { "x": 73, "y": 0, "w": 37, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 1, "w": 37, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0015.png",
"frame": { "x": 73, "y": 38, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 4, "y": 4, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0016.png",
"frame": { "x": 0, "y": 40, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 6, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0017.png",
"frame": { "x": 36, "y": 76, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 8, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0018.png",
"frame": { "x": 0, "y": 78, "w": 35, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 9, "w": 35, "h": 39 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0019.png",
"frame": { "x": 0, "y": 0, "w": 36, "h": 40 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 9, "w": 36, "h": 40 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0020.png",
"frame": { "x": 0, "y": 0, "w": 36, "h": 40 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 8, "w": 36, "h": 40 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0021.png",
"frame": { "x": 0, "y": 78, "w": 35, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 7, "w": 35, "h": 39 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0022.png",
"frame": { "x": 36, "y": 76, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 6, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0023.png",
"frame": { "x": 0, "y": 40, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 4, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0024.png",
"frame": { "x": 72, "y": 76, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 1, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0025.png",
"frame": { "x": 36, "y": 0, "w": 37, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 0, "w": 37, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0026.png",
"frame": { "x": 73, "y": 0, "w": 37, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 1, "w": 37, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0027.png",
"frame": { "x": 73, "y": 38, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 4, "y": 4, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0028.png",
"frame": { "x": 0, "y": 40, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 6, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0029.png",
"frame": { "x": 36, "y": 76, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 8, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0030.png",
"frame": { "x": 0, "y": 78, "w": 35, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 9, "w": 35, "h": 39 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0031.png",
"frame": { "x": 0, "y": 0, "w": 36, "h": 40 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 9, "w": 36, "h": 40 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0032.png",
"frame": { "x": 0, "y": 0, "w": 36, "h": 40 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 8, "w": 36, "h": 40 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0033.png",
"frame": { "x": 0, "y": 78, "w": 35, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 7, "w": 35, "h": 39 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0034.png",
"frame": { "x": 36, "y": 76, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 6, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0035.png",
"frame": { "x": 0, "y": 40, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 4, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0036.png",
"frame": { "x": 72, "y": 76, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 1, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0037.png",
"frame": { "x": 36, "y": 0, "w": 37, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 0, "w": 37, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0038.png",
"frame": { "x": 73, "y": 0, "w": 37, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 1, "w": 37, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0039.png",
"frame": { "x": 73, "y": 38, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 4, "y": 4, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0040.png",
"frame": { "x": 0, "y": 40, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 6, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0041.png",
"frame": { "x": 36, "y": 76, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 8, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0042.png",
"frame": { "x": 0, "y": 78, "w": 35, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 9, "w": 35, "h": 39 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0043.png",
"frame": { "x": 0, "y": 0, "w": 36, "h": 40 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 9, "w": 36, "h": 40 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0044.png",
"frame": { "x": 0, "y": 0, "w": 36, "h": 40 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 8, "w": 36, "h": 40 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0045.png",
"frame": { "x": 0, "y": 78, "w": 35, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 7, "w": 35, "h": 39 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0046.png",
"frame": { "x": 36, "y": 76, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 6, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0047.png",
"frame": { "x": 0, "y": 40, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 4, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0048.png",
"frame": { "x": 72, "y": 76, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 1, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0049.png",
"frame": { "x": 36, "y": 0, "w": 37, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 0, "w": 37, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0050.png",
"frame": { "x": 36, "y": 38, "w": 37, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 3, "w": 37, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0051.png",
"frame": { "x": 0, "y": 78, "w": 35, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 4, "w": 35, "h": 39 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0052.png",
"frame": { "x": 0, "y": 78, "w": 35, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 7, "w": 35, "h": 39 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0053.png",
"frame": { "x": 0, "y": 78, "w": 35, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 3, "w": 35, "h": 39 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0054.png",
"frame": { "x": 0, "y": 78, "w": 35, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 6, "w": 35, "h": 39 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0055.png",
"frame": { "x": 0, "y": 78, "w": 35, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 4, "w": 35, "h": 39 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0056.png",
"frame": { "x": 0, "y": 78, "w": 35, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 6, "w": 35, "h": 39 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0057.png",
"frame": { "x": 0, "y": 78, "w": 35, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 5, "w": 35, "h": 39 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0058.png",
"frame": { "x": 0, "y": 78, "w": 35, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 6, "w": 35, "h": 39 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0059.png",
"frame": { "x": 0, "y": 78, "w": 35, "h": 39 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 5, "w": 35, "h": 39 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0060.png",
"frame": { "x": 36, "y": 38, "w": 37, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 4, "w": 37, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0061.png",
"frame": { "x": 73, "y": 38, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
{
"filename": "0062.png",
"frame": { "x": 72, "y": 76, "w": 36, "h": 38 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 1, "w": 36, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
}
],
"meta": {
"app": "https://www.aseprite.org/",
"version": "1.3.11-x64",
"image": "703.png",
"format": "I8",
"size": { "w": 110, "h": 117 },
"scale": "1"
}
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 417 B

After

Width:  |  Height:  |  Size: 1.2 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 767 B

After

Width:  |  Height:  |  Size: 52 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 415 B

After

Width:  |  Height:  |  Size: 8.7 KiB

View File

@ -1,41 +1,263 @@
{ { "frames": [
"textures": [ {
{ "filename": "0001.png",
"image": "714.png", "frame": { "x": 1, "y": 61, "w": 63, "h": 57 },
"format": "RGBA8888", "rotated": false,
"size": { "trimmed": true,
"w": 63, "spriteSourceSize": { "x": 3, "y": 4, "w": 63, "h": 57 },
"h": 63 "sourceSize": { "w": 68, "h": 68 },
}, "duration": 50
"scale": 1, },
"frames": [ {
{ "filename": "0002.png",
"filename": "0001.png", "frame": { "x": 66, "y": 61, "w": 63, "h": 57 },
"rotated": false, "rotated": false,
"trimmed": false, "trimmed": true,
"sourceSize": { "spriteSourceSize": { "x": 4, "y": 6, "w": 63, "h": 57 },
"w": 63, "sourceSize": { "w": 68, "h": 68 },
"h": 57 "duration": 50
}, },
"spriteSourceSize": { {
"x": 0, "filename": "0003.png",
"y": 0, "frame": { "x": 198, "y": 1, "w": 64, "h": 57 },
"w": 63, "rotated": false,
"h": 57 "trimmed": true,
}, "spriteSourceSize": { "x": 4, "y": 8, "w": 64, "h": 57 },
"frame": { "sourceSize": { "w": 68, "h": 68 },
"x": 0, "duration": 50
"y": 0, },
"w": 63, {
"h": 57 "filename": "0004.png",
} "frame": { "x": 124, "y": 120, "w": 34, "h": 65 },
} "rotated": false,
] "trimmed": true,
} "spriteSourceSize": { "x": 19, "y": 3, "w": 34, "h": 65 },
], "sourceSize": { "w": 68, "h": 68 },
"meta": { "duration": 50
"app": "https://www.codeandweb.com/texturepacker", },
"version": "3.0", {
"smartupdate": "$TexturePacker:SmartUpdate:8ffbc9c4153869b318391be0e5f3743c:6e53f3ebf638d13b0d9b325c9e1c6198:1a07d46e710b0568ec824f54fbc4fe6a$" "filename": "0005.png",
} "frame": { "x": 1, "y": 178, "w": 34, "h": 60 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 18, "y": 3, "w": 34, "h": 60 },
"sourceSize": { "w": 68, "h": 68 },
"duration": 50
},
{
"filename": "0006.png",
"frame": { "x": 264, "y": 61, "w": 47, "h": 57 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 11, "y": 1, "w": 47, "h": 57 },
"sourceSize": { "w": 68, "h": 68 },
"duration": 50
},
{
"filename": "0007.png",
"frame": { "x": 196, "y": 119, "w": 47, "h": 57 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 0, "w": 47, "h": 57 },
"sourceSize": { "w": 68, "h": 68 },
"duration": 50
},
{
"filename": "0008.png",
"frame": { "x": 1, "y": 61, "w": 63, "h": 57 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 4, "w": 63, "h": 57 },
"sourceSize": { "w": 68, "h": 68 },
"duration": 50
},
{
"filename": "0009.png",
"frame": { "x": 131, "y": 61, "w": 63, "h": 57 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 6, "w": 63, "h": 57 },
"sourceSize": { "w": 68, "h": 68 },
"duration": 50
},
{
"filename": "0010.png",
"frame": { "x": 198, "y": 60, "w": 64, "h": 57 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 8, "w": 64, "h": 57 },
"sourceSize": { "w": 68, "h": 68 },
"duration": 50
},
{
"filename": "0011.png",
"frame": { "x": 160, "y": 120, "w": 34, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 13, "y": 3, "w": 34, "h": 65 },
"sourceSize": { "w": 68, "h": 68 },
"duration": 50
},
{
"filename": "0012.png",
"frame": { "x": 196, "y": 178, "w": 34, "h": 60 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 14, "y": 3, "w": 34, "h": 60 },
"sourceSize": { "w": 68, "h": 68 },
"duration": 50
},
{
"filename": "0013.png",
"frame": { "x": 1, "y": 120, "w": 47, "h": 56 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 1, "w": 47, "h": 56 },
"sourceSize": { "w": 68, "h": 68 },
"duration": 50
},
{
"filename": "0014.png",
"frame": { "x": 196, "y": 119, "w": 47, "h": 57 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 0, "w": 47, "h": 57 },
"sourceSize": { "w": 68, "h": 68 },
"duration": 50
},
{
"filename": "0015.png",
"frame": { "x": 1, "y": 61, "w": 63, "h": 57 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 4, "w": 63, "h": 57 },
"sourceSize": { "w": 68, "h": 68 },
"duration": 50
},
{
"filename": "0016.png",
"frame": { "x": 66, "y": 61, "w": 63, "h": 57 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 4, "y": 6, "w": 63, "h": 57 },
"sourceSize": { "w": 68, "h": 68 },
"duration": 50
},
{
"filename": "0017.png",
"frame": { "x": 1, "y": 1, "w": 64, "h": 58 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 4, "y": 7, "w": 64, "h": 58 },
"sourceSize": { "w": 68, "h": 68 },
"duration": 50
},
{
"filename": "0018.png",
"frame": { "x": 50, "y": 120, "w": 35, "h": 66 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 18, "y": 2, "w": 35, "h": 66 },
"sourceSize": { "w": 68, "h": 68 },
"duration": 50
},
{
"filename": "0019.png",
"frame": { "x": 245, "y": 120, "w": 35, "h": 61 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 17, "y": 2, "w": 35, "h": 61 },
"sourceSize": { "w": 68, "h": 68 },
"duration": 50
},
{
"filename": "0020.png",
"frame": { "x": 264, "y": 1, "w": 47, "h": 58 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 11, "y": 0, "w": 47, "h": 58 },
"sourceSize": { "w": 68, "h": 68 },
"duration": 50
},
{
"filename": "0021.png",
"frame": { "x": 196, "y": 119, "w": 47, "h": 57 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 0, "w": 47, "h": 57 },
"sourceSize": { "w": 68, "h": 68 },
"duration": 50
},
{
"filename": "0022.png",
"frame": { "x": 1, "y": 61, "w": 63, "h": 57 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 4, "w": 63, "h": 57 },
"sourceSize": { "w": 68, "h": 68 },
"duration": 50
},
{
"filename": "0023.png",
"frame": { "x": 133, "y": 1, "w": 63, "h": 58 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 5, "w": 63, "h": 58 },
"sourceSize": { "w": 68, "h": 68 },
"duration": 50
},
{
"filename": "0024.png",
"frame": { "x": 67, "y": 1, "w": 64, "h": 58 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 7, "w": 64, "h": 58 },
"sourceSize": { "w": 68, "h": 68 },
"duration": 50
},
{
"filename": "0025.png",
"frame": { "x": 87, "y": 120, "w": 35, "h": 66 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 12, "y": 2, "w": 35, "h": 66 },
"sourceSize": { "w": 68, "h": 68 },
"duration": 50
},
{
"filename": "0026.png",
"frame": { "x": 282, "y": 120, "w": 34, "h": 61 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 14, "y": 2, "w": 34, "h": 61 },
"sourceSize": { "w": 68, "h": 68 },
"duration": 50
},
{
"filename": "0027.png",
"frame": { "x": 1, "y": 120, "w": 47, "h": 56 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 1, "w": 47, "h": 56 },
"sourceSize": { "w": 68, "h": 68 },
"duration": 50
},
{
"filename": "0028.png",
"frame": { "x": 196, "y": 119, "w": 47, "h": 57 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 0, "w": 47, "h": 57 },
"sourceSize": { "w": 68, "h": 68 },
"duration": 50
}
],
"meta": {
"app": "https://www.aseprite.org/",
"version": "1.3.12-x64",
"image": "714.png",
"format": "I8",
"size": { "w": 317, "h": 239 },
"scale": "1"
}
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 621 B

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1,41 +1,686 @@
{ { "frames": [
"textures": [ {
{ "filename": "0001.png",
"image": "718-10.png", "frame": { "x": 120, "y": 63, "w": 59, "h": 65 },
"format": "RGBA8888", "rotated": false,
"size": { "trimmed": true,
"w": 65, "spriteSourceSize": { "x": 2, "y": 2, "w": 59, "h": 65 },
"h": 65 "sourceSize": { "w": 64, "h": 67 },
}, "duration": 100
"scale": 1, },
"frames": [ {
{ "filename": "0002.png",
"filename": "0001.png", "frame": { "x": 179, "y": 63, "w": 59, "h": 65 },
"rotated": false, "rotated": false,
"trimmed": false, "trimmed": true,
"sourceSize": { "spriteSourceSize": { "x": 2, "y": 2, "w": 59, "h": 65 },
"w": 59, "sourceSize": { "w": 64, "h": 67 },
"h": 65 "duration": 100
}, },
"spriteSourceSize": { {
"x": 0, "filename": "0003.png",
"y": 0, "frame": { "x": 0, "y": 0, "w": 60, "h": 65 },
"w": 59, "rotated": false,
"h": 65 "trimmed": true,
}, "spriteSourceSize": { "x": 1, "y": 2, "w": 60, "h": 65 },
"frame": { "sourceSize": { "w": 64, "h": 67 },
"x": 0, "duration": 100
"y": 0, },
"w": 59, {
"h": 65 "filename": "0004.png",
} "frame": { "x": 293, "y": 128, "w": 60, "h": 63 },
} "rotated": false,
] "trimmed": true,
} "spriteSourceSize": { "x": 1, "y": 4, "w": 60, "h": 63 },
], "sourceSize": { "w": 64, "h": 67 },
"meta": { "duration": 100
"app": "https://www.codeandweb.com/texturepacker", },
"version": "3.0", {
"smartupdate": "$TexturePacker:SmartUpdate:e9f4b2c69d996349a8e35598e7ddec9c:06067c7cf2cde81fd4d1f42fe319185e:82195cf2a6db620c5643b8162d6e8c5c$" "filename": "0005.png",
} "frame": { "x": 0, "y": 131, "w": 60, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 60, "h": 63 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0006.png",
"frame": { "x": 120, "y": 0, "w": 61, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 4, "w": 61, "h": 63 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0007.png",
"frame": { "x": 181, "y": 0, "w": 61, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 4, "w": 61, "h": 63 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0008.png",
"frame": { "x": 242, "y": 0, "w": 61, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 4, "w": 61, "h": 63 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0009.png",
"frame": { "x": 303, "y": 0, "w": 61, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 61, "h": 63 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0010.png",
"frame": { "x": 232, "y": 190, "w": 60, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 60, "h": 63 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0011.png",
"frame": { "x": 292, "y": 191, "w": 60, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 60, "h": 63 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0012.png",
"frame": { "x": 60, "y": 0, "w": 60, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 2, "w": 60, "h": 65 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0013.png",
"frame": { "x": 238, "y": 63, "w": 59, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 59, "h": 65 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0014.png",
"frame": { "x": 297, "y": 63, "w": 59, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 59, "h": 65 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0015.png",
"frame": { "x": 120, "y": 63, "w": 59, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 59, "h": 65 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0016.png",
"frame": { "x": 179, "y": 63, "w": 59, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 59, "h": 65 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0017.png",
"frame": { "x": 0, "y": 0, "w": 60, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 2, "w": 60, "h": 65 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0018.png",
"frame": { "x": 293, "y": 128, "w": 60, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 60, "h": 63 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0019.png",
"frame": { "x": 0, "y": 131, "w": 60, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 60, "h": 63 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0020.png",
"frame": { "x": 120, "y": 0, "w": 61, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 4, "w": 61, "h": 63 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0021.png",
"frame": { "x": 181, "y": 0, "w": 61, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 4, "w": 61, "h": 63 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0022.png",
"frame": { "x": 242, "y": 0, "w": 61, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 4, "w": 61, "h": 63 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0023.png",
"frame": { "x": 303, "y": 0, "w": 61, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 61, "h": 63 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0024.png",
"frame": { "x": 232, "y": 190, "w": 60, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 60, "h": 63 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0025.png",
"frame": { "x": 292, "y": 191, "w": 60, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 60, "h": 63 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0026.png",
"frame": { "x": 60, "y": 0, "w": 60, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 2, "w": 60, "h": 65 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0027.png",
"frame": { "x": 238, "y": 63, "w": 59, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 59, "h": 65 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0028.png",
"frame": { "x": 297, "y": 63, "w": 59, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 59, "h": 65 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0029.png",
"frame": { "x": 120, "y": 63, "w": 59, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 59, "h": 65 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0030.png",
"frame": { "x": 179, "y": 63, "w": 59, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 59, "h": 65 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0031.png",
"frame": { "x": 0, "y": 0, "w": 60, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 2, "w": 60, "h": 65 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0032.png",
"frame": { "x": 293, "y": 128, "w": 60, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 60, "h": 63 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0033.png",
"frame": { "x": 0, "y": 131, "w": 60, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 60, "h": 63 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0034.png",
"frame": { "x": 120, "y": 0, "w": 61, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 4, "w": 61, "h": 63 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0035.png",
"frame": { "x": 181, "y": 0, "w": 61, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 4, "w": 61, "h": 63 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0036.png",
"frame": { "x": 242, "y": 0, "w": 61, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 4, "w": 61, "h": 63 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0037.png",
"frame": { "x": 303, "y": 0, "w": 61, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 61, "h": 63 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0038.png",
"frame": { "x": 232, "y": 190, "w": 60, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 60, "h": 63 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0039.png",
"frame": { "x": 292, "y": 191, "w": 60, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 60, "h": 63 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0040.png",
"frame": { "x": 60, "y": 0, "w": 60, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 2, "w": 60, "h": 65 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0041.png",
"frame": { "x": 238, "y": 63, "w": 59, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 59, "h": 65 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0042.png",
"frame": { "x": 297, "y": 63, "w": 59, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 59, "h": 65 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0043.png",
"frame": { "x": 120, "y": 63, "w": 59, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 59, "h": 65 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0044.png",
"frame": { "x": 179, "y": 63, "w": 59, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 59, "h": 65 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0045.png",
"frame": { "x": 0, "y": 0, "w": 60, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 2, "w": 60, "h": 65 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0046.png",
"frame": { "x": 293, "y": 128, "w": 60, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 60, "h": 63 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0047.png",
"frame": { "x": 0, "y": 131, "w": 60, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 60, "h": 63 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0048.png",
"frame": { "x": 120, "y": 0, "w": 61, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 4, "w": 61, "h": 63 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0049.png",
"frame": { "x": 181, "y": 0, "w": 61, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 4, "w": 61, "h": 63 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0050.png",
"frame": { "x": 242, "y": 0, "w": 61, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 4, "w": 61, "h": 63 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0051.png",
"frame": { "x": 303, "y": 0, "w": 61, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 61, "h": 63 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0052.png",
"frame": { "x": 232, "y": 190, "w": 60, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 60, "h": 63 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0053.png",
"frame": { "x": 292, "y": 191, "w": 60, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 60, "h": 63 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0054.png",
"frame": { "x": 60, "y": 0, "w": 60, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 2, "w": 60, "h": 65 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0055.png",
"frame": { "x": 238, "y": 63, "w": 59, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 59, "h": 65 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0056.png",
"frame": { "x": 297, "y": 63, "w": 59, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 59, "h": 65 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0057.png",
"frame": { "x": 120, "y": 63, "w": 59, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 59, "h": 65 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0058.png",
"frame": { "x": 0, "y": 194, "w": 59, "h": 64 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 3, "w": 59, "h": 64 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0059.png",
"frame": { "x": 59, "y": 194, "w": 59, "h": 64 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 3, "w": 59, "h": 64 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0060.png",
"frame": { "x": 56, "y": 319, "w": 59, "h": 63 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 4, "w": 59, "h": 63 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0061.png",
"frame": { "x": 117, "y": 259, "w": 60, "h": 62 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 5, "w": 60, "h": 62 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0062.png",
"frame": { "x": 177, "y": 320, "w": 60, "h": 61 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 6, "w": 60, "h": 61 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0063.png",
"frame": { "x": 232, "y": 128, "w": 61, "h": 62 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 5, "w": 61, "h": 62 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0064.png",
"frame": { "x": 56, "y": 258, "w": 61, "h": 61 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 6, "w": 61, "h": 61 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0065.png",
"frame": { "x": 118, "y": 195, "w": 59, "h": 64 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 3, "w": 59, "h": 64 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0066.png",
"frame": { "x": 115, "y": 321, "w": 55, "h": 66 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 1, "w": 55, "h": 66 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0067.png",
"frame": { "x": 237, "y": 321, "w": 55, "h": 66 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 1, "w": 55, "h": 66 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0068.png",
"frame": { "x": 234, "y": 253, "w": 56, "h": 67 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 0, "w": 56, "h": 67 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0069.png",
"frame": { "x": 290, "y": 254, "w": 56, "h": 67 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 0, "w": 56, "h": 67 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0070.png",
"frame": { "x": 0, "y": 258, "w": 56, "h": 67 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 0, "w": 56, "h": 67 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0071.png",
"frame": { "x": 175, "y": 128, "w": 57, "h": 67 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 0, "w": 57, "h": 67 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0072.png",
"frame": { "x": 177, "y": 253, "w": 57, "h": 66 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 1, "w": 57, "h": 66 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0073.png",
"frame": { "x": 59, "y": 65, "w": 58, "h": 66 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 1, "w": 58, "h": 66 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0074.png",
"frame": { "x": 117, "y": 128, "w": 58, "h": 66 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 1, "w": 58, "h": 66 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
{
"filename": "0075.png",
"frame": { "x": 0, "y": 65, "w": 59, "h": 65 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 59, "h": 65 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
}
],
"meta": {
"app": "https://www.aseprite.org/",
"version": "1.3.12-x64",
"image": "718-10.png",
"format": "I8",
"size": { "w": 364, "h": 387 },
"scale": "1"
}
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 686 B

After

Width:  |  Height:  |  Size: 12 KiB

Some files were not shown because too many files have changed in this diff Show More