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 = {
forbidden: [
{
name: 'no-circular-at-runtime',
severity: 'warn',
name: "no-circular-at-runtime",
severity: "warn",
comment:
'This dependency is part of a circular relationship. You might want to revise ' +
'your solution (i.e. use dependency inversion, make sure the modules have a single responsibility) ',
"This dependency is part of a circular relationship. You might want to revise " +
"your solution (i.e. use dependency inversion, make sure the modules have a single responsibility) ",
from: {},
to: {
circular: true,
viaOnly: {
dependencyTypesNot: [
'type-only'
]
}
}
dependencyTypesNot: ["type-only"],
},
},
},
{
name: 'no-orphans',
name: "no-orphans",
comment:
"This is an orphan module - it's likely not used (anymore?). Either use it or " +
"remove it. If it's logical this module is an orphan (i.e. it's a config file), " +
"add an exception for it in your dependency-cruiser configuration. By default " +
"this rule does not scrutinize dot-files (e.g. .eslintrc.js), TypeScript declaration " +
"files (.d.ts), tsconfig.json and some of the babel and webpack configs.",
severity: 'warn',
severity: "warn",
from: {
orphan: true,
pathNot: [
'(^|/)[.][^/]+[.](?:js|cjs|mjs|ts|cts|mts|json)$', // dot files
'[.]d[.]ts$', // TypeScript declaration files
'(^|/)tsconfig[.]json$', // TypeScript config
'(^|/)(?:babel|webpack)[.]config[.](?:js|cjs|mjs|ts|cts|mts|json)$' // other configs
]
"(^|/)[.][^/]+[.](?:js|cjs|mjs|ts|cts|mts|json)$", // dot files
"[.]d[.]ts$", // TypeScript declaration files
"(^|/)tsconfig[.]json$", // TypeScript config
"(^|/)(?:babel|webpack)[.]config[.](?:js|cjs|mjs|ts|cts|mts|json)$", // other configs
],
},
to: {},
},
{
name: 'no-deprecated-core',
name: "no-deprecated-core",
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.",
severity: 'warn',
severity: "warn",
from: {},
to: {
dependencyTypes: [
'core'
],
dependencyTypes: ["core"],
path: [
'^v8/tools/codemap$',
'^v8/tools/consarray$',
'^v8/tools/csvparser$',
'^v8/tools/logreader$',
'^v8/tools/profile_view$',
'^v8/tools/profile$',
'^v8/tools/SourceMap$',
'^v8/tools/splaytree$',
'^v8/tools/tickprocessor-driver$',
'^v8/tools/tickprocessor$',
'^node-inspect/lib/_inspect$',
'^node-inspect/lib/internal/inspect_client$',
'^node-inspect/lib/internal/inspect_repl$',
'^async_hooks$',
'^punycode$',
'^domain$',
'^constants$',
'^sys$',
'^_linklist$',
'^_stream_wrap$'
"^v8/tools/codemap$",
"^v8/tools/consarray$",
"^v8/tools/csvparser$",
"^v8/tools/logreader$",
"^v8/tools/profile_view$",
"^v8/tools/profile$",
"^v8/tools/SourceMap$",
"^v8/tools/splaytree$",
"^v8/tools/tickprocessor-driver$",
"^v8/tools/tickprocessor$",
"^node-inspect/lib/_inspect$",
"^node-inspect/lib/internal/inspect_client$",
"^node-inspect/lib/internal/inspect_repl$",
"^async_hooks$",
"^punycode$",
"^domain$",
"^constants$",
"^sys$",
"^_linklist$",
"^_stream_wrap$",
],
}
},
},
{
name: 'not-to-deprecated',
name: "not-to-deprecated",
comment:
'This module uses a (version of an) npm module that has been deprecated. Either upgrade to a later ' +
'version of that module, or find an alternative. Deprecated modules are a security risk.',
severity: 'warn',
"This module uses a (version of an) npm module that has been deprecated. Either upgrade to a later " +
"version of that module, or find an alternative. Deprecated modules are a security risk.",
severity: "warn",
from: {},
to: {
dependencyTypes: [
'deprecated'
]
}
dependencyTypes: ["deprecated"],
},
},
{
name: 'no-non-package-json',
severity: 'error',
name: "no-non-package-json",
severity: "error",
comment:
"This module depends on an npm package that isn't in the 'dependencies' section of your package.json. " +
"That's problematic as the package either (1) won't be available on live (2 - worse) will be " +
@ -95,87 +89,75 @@ module.exports = {
"in your package.json.",
from: {},
to: {
dependencyTypes: [
'npm-no-pkg',
'npm-unknown'
]
}
dependencyTypes: ["npm-no-pkg", "npm-unknown"],
},
},
{
name: 'not-to-unresolvable',
name: "not-to-unresolvable",
comment:
"This module depends on a module that cannot be found ('resolved to disk'). If it's an npm " +
'module: add it to your package.json. In all other cases you likely already know what to do.',
severity: 'error',
"module: add it to your package.json. In all other cases you likely already know what to do.",
severity: "error",
from: {},
to: {
couldNotResolve: true
}
couldNotResolve: true,
},
},
{
name: 'no-duplicate-dep-types',
name: "no-duplicate-dep-types",
comment:
"Likely this module depends on an external ('npm') package that occurs more than once " +
"in your package.json i.e. bot as a devDependencies and in dependencies. This will cause " +
"maintenance problems later on.",
severity: 'warn',
severity: "warn",
from: {},
to: {
moreThanOneDependencyType: true,
// 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
// types for this rule
dependencyTypesNot: ["type-only"]
}
dependencyTypesNot: ["type-only"],
},
},
/* rules you might want to tweak for your specific situation: */
{
name: 'not-to-spec',
name: "not-to-spec",
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 " +
'responsibility anymore. Factor it out into (e.g.) a separate utility/ helper or a mock.',
severity: 'error',
"responsibility anymore. Factor it out into (e.g.) a separate utility/ helper or a mock.",
severity: "error",
from: {},
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',
severity: 'error',
name: "not-to-dev-dep",
severity: "error",
comment:
"This module depends on an npm package from the 'devDependencies' section of your " +
'package.json. It looks like something that ships to production, though. To prevent problems ' +
"package.json. It looks like something that ships to production, though. To prevent problems " +
"with npm packages that aren't there on production declare it (only!) in the 'dependencies'" +
'section of your package.json. If this module is development only - add it to the ' +
'from.pathNot re of the not-to-dev-dep rule in the dependency-cruiser configuration',
"section of your package.json. If this module is development only - add it to the " +
"from.pathNot re of the not-to-dev-dep rule in the dependency-cruiser configuration",
from: {
path: '^(src)',
pathNot: [
'[.](?:spec|test|setup|script)[.](?:js|mjs|cjs|jsx|ts|mts|cts|tsx)$',
'src/test'
]
path: "^(src)",
pathNot: ["[.](?:spec|test|setup|script)[.](?:js|mjs|cjs|jsx|ts|mts|cts|tsx)$", "./test"],
},
to: {
dependencyTypes: [
'npm-dev',
],
dependencyTypes: ["npm-dev"],
// type only dependencies are not a problem as they don't end up in the
// production code or are ignored by the runtime.
dependencyTypesNot: [
'type-only'
],
pathNot: [
'node_modules/@types/'
]
}
dependencyTypesNot: ["type-only"],
pathNot: ["node_modules/@types/"],
},
},
{
name: 'optional-deps-used',
severity: 'info',
name: "optional-deps-used",
severity: "info",
comment:
"This module depends on an npm package that is declared as an optional dependency " +
"in your package.json. As this makes sense in limited situations only, it's flagged here. " +
@ -183,33 +165,28 @@ module.exports = {
"dependency-cruiser configuration.",
from: {},
to: {
dependencyTypes: [
'npm-optional'
]
}
dependencyTypes: ["npm-optional"],
},
},
{
name: 'peer-deps-used',
name: "peer-deps-used",
comment:
"This module depends on an npm package that is declared as a peer dependency " +
"in your package.json. This makes sense if your package is e.g. a plugin, but in " +
"other cases - maybe not so much. If the use of a peer dependency is intentional " +
"add an exception to your dependency-cruiser configuration.",
severity: 'warn',
severity: "warn",
from: {},
to: {
dependencyTypes: [
'npm-peer'
]
}
}
dependencyTypes: ["npm-peer"],
},
},
],
options: {
/* Which modules not to follow further when encountered */
doNotFollow: {
/* path: an array of regular expressions in strings to match against */
path: ['node_modules']
path: ["node_modules"],
},
/* Which modules to exclude */
@ -271,7 +248,7 @@ module.exports = {
defaults to './tsconfig.json'.
*/
tsConfig: {
fileName: 'tsconfig.json'
fileName: "tsconfig.json",
},
/* 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
the external modules, but their innards.
*/
collapsePattern: 'node_modules/(?:@[^/]+/[^/]+|[^/]+)',
collapsePattern: "node_modules/(?:@[^/]+/[^/]+|[^/]+)",
/* Options to tweak the appearance of your graph.See
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
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
theme for 'archi' dependency-cruiser will use the one specified in the
@ -375,10 +353,10 @@ module.exports = {
*/
// theme: { },
},
"text": {
"highlightFocused": true
text: {
highlightFocused: true,
},
},
},
}
}
};
// 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
# 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
description: Create a report to help us improve
title: "[Bug] "
type: bug
labels: ["Bug", "Triage"]
body:
- type: markdown

View File

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

View File

@ -1,4 +1,4 @@
name: ESLint
name: Biome Code Quality
on:
# 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
uses: actions/setup-node@v4 # Use the setup-node action version 4
with:
node-version: 20 # Specify Node.js version 20
node-version-file: '.nvmrc'
- name: Install Node.js dependencies # Step to install Node.js dependencies
run: npm ci # Use 'npm ci' to install dependencies
- name: eslint # Step to run linters
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
/.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
## Server Owner/Administrator
## Server Developers
- pancakes aka patapancakes
## Senior Developers
- Walker
- NightKev
- Moka
- Temp aka Tempo-anon
- Madmadness65
## Developers
## Current and former Development Team members
- bennybroseph
- Brain Frog
- CodeTappert
- Dakurei
- flx-sta
- innerthunder
- frutescens
- Greenlamp
- ImperialSympathizer
- innerthunder
- KimJeongSun
- Madmadness65
- Moka
- Navori
- NightKev
- Opaquer
- OrangeRed
- Sam aka Flashfyre (initial developer, started PokéRogue)
- SirzBenjie
- sirzento
- SN34KZ
- Swain aka torranx
## Junior Developers
- KimJeongSun
- ImperialSympathizer
- Temp aka Tempo-anon
- Walker
- Wlowscha (aka Curbio)
- Xavion
## Bug/Issue Managers
- Snailman
- Daleks
- Lily
- PigeonBar
- Snailman
## Other Code Contributors
- Admiral-Billy
@ -378,10 +385,7 @@ In addition to the lists below, please check [the PokéRogue wiki](https://wiki.
- arColm
- Arxalc
- AsdarDevelops
- bennybroseph
- Brain Frog
- Corrade
- Dakurei
- DustinLin
- ElizaAlex
- EmberCM
@ -391,7 +395,6 @@ In addition to the lists below, please check [the PokéRogue wiki](https://wiki.
- francktrouillez
- FredeX
- geeilhan
- Greenlamp
- happinyz
- hayuna
- InfernoVulpix
@ -411,7 +414,6 @@ In addition to the lists below, please check [the PokéRogue wiki](https://wiki.
- Neverblade
- NxKarim
- okimin
- OrangeRed
- PigeonBar
- PrabbyDD
- prateau
@ -421,10 +423,8 @@ In addition to the lists below, please check [the PokéRogue wiki](https://wiki.
- RedstonewolfX
- ReneGV
- rnicar245
- Sam aka Flashfyre (initial developer, started PokéRogue)
- schmidtc1
- shayebeadling
- sirzento
- snoozbuster
- sodaMelon
- 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!
# Contributing
## 🛠️ 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.
### 💻 Environment Setup
#### Prerequisites
- node: 20.13.1
- npm: [how to install](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm)
#### Running Locally
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*
2. Run `npm run start:dev` to locally run the project in `localhost:8000`
#### 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
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 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
**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
**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 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
Check out [Github Issues](https://github.com/pagefaultgames/pokerogue/issues) to see how can you help us!
# 📝 Credits
>
> If this project contains assets you have produced and you do not see your name, **please** reach out, either [here on GitHub](https://github.com/pagefaultgames/pokerogue/issues/new) or via [Discord](https://discord.gg/pokerogue).
Thank you to all the wonderful people that have contributed to the PokéRogue project! You can find the credits [here](./CREDITS.md).

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

@ -31,7 +31,8 @@ async function promptTestType() {
if (typeAnswer.selectedOption === "EXIT") {
console.log("Exiting...");
return process.exit();
} else if (!typeChoices.includes(typeAnswer.selectedOption)) {
}
if (!typeChoices.includes(typeAnswer.selectedOption)) {
console.error(`Please provide a valid type (${typeChoices.join(", ")})!`);
return await promptTestType();
}
@ -74,29 +75,29 @@ async function runInteractive() {
const fileName = fileNameAnswer.userInput
.replace(/-+/g, "_") // Convert kebab-case (dashes) to underscores
.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
// 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
let dir;
let description;
switch (type) {
case "move":
dir = path.join(__dirname, "src", "test", "moves");
dir = path.join(__dirname, "test", "moves");
description = `Moves - ${formattedName}`;
break;
case "ability":
dir = path.join(__dirname, "src", "test", "abilities");
dir = path.join(__dirname, "test", "abilities");
description = `Abilities - ${formattedName}`;
break;
case "item":
dir = path.join(__dirname, "src", "test", "items");
dir = path.join(__dirname, "test", "items");
description = `Items - ${formattedName}`;
break;
case "mystery encounter":
dir = path.join(__dirname, "src", "test", "mystery-encounter", "encounters");
dir = path.join(__dirname, "test", "mystery-encounter", "encounters");
description = `Mystery Encounter - ${formattedName}`;
break;
default:
@ -108,7 +109,7 @@ async function runInteractive() {
const content = `import { Abilities } from "#enums/abilities";
import { Moves } from "#enums/moves";
import { Species } from "#enums/species";
import GameManager from "#test/utils/gameManager";
import GameManager from "#test/testUtils/gameManager";
import Phaser from "phaser";
import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest";

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:
```ts
getUserBenefitScore(user: Pokemon, target: Pokemon, move: Move): integer;
getTargetBenefitScore(user: Pokemon, target: Pokemon, move: Move): integer;
getUserBenefitScore(user: Pokemon, target: Pokemon, move: Move): number;
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:

View File

@ -1,52 +1,43 @@
import tseslint from '@typescript-eslint/eslint-plugin';
import stylisticTs from '@stylistic/eslint-plugin-ts';
import parser from '@typescript-eslint/parser';
import importX from 'eslint-plugin-import-x';
import tseslint from "@typescript-eslint/eslint-plugin";
import stylisticTs from "@stylistic/eslint-plugin-ts";
import parser from "@typescript-eslint/parser";
import importX from "eslint-plugin-import-x";
export default [
{
files: ["src/**/*.{ts,tsx,js,jsx}"],
name: "eslint-config",
files: ["src/**/*.{ts,tsx,js,jsx}", "test/**/*.{ts,tsx,js,jsx}"],
ignores: ["dist/*", "build/*", "coverage/*", "public/*", ".github/*", "node_modules/*", ".vscode/*"],
languageOptions: {
parser: parser
parser: parser,
},
plugins: {
"import-x": importX,
'@stylistic/ts': stylisticTs,
'@typescript-eslint': tseslint
"@stylistic/ts": stylisticTs,
"@typescript-eslint": tseslint,
},
rules: {
"eqeqeq": ["error", "always"], // Enforces the use of `===` and `!==` instead of `==` and `!=`
"indent": ["error", 2, { "SwitchCase": 1 }], // Enforces a 2-space indentation, enforces indentation of `case ...:` statements
"quotes": ["error", "double"], // Enforces the use of double quotes for strings
"no-var": "error", // Disallows the use of `var`, enforcing `let` or `const` instead
"prefer-const": "error", // Enforces the use of `const` for variables that are never reassigned
"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.
}],
"eol-last": ["error", "always"], // Enforces at least one newline at the end of files
"@stylistic/ts/semi": ["error", "always"], // Requires semicolons for TypeScript-specific syntax
"semi": "off", // Disables the general semi rule for TypeScript files
"no-extra-semi": ["error"], // Disallows unnecessary semicolons for TypeScript-specific syntax
"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
"no-trailing-spaces": ["error", { // Disallows trailing whitespace at the end of lines
"skipBlankLines": false, // Enforces the rule even on blank lines
"ignoreComments": false // Enforces the rule on lines containing comments
}],
"space-before-blocks": ["error", "always"], // Enforces a space before blocks
"keyword-spacing": ["error", { "before": true, "after": true }], // Enforces spacing before and after keywords
"comma-spacing": ["error", { "before": false, "after": true }], // Enforces spacing after 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
}
}
]
"import-x/extensions": ["error", "never", { json: "always" }], // Enforces no extension for imports unless json
},
},
{
name: "eslint-tests",
files: ["test/**/**.test.ts"],
languageOptions: {
parser: parser,
parserOptions: {
project: ["./tsconfig.json"],
},
},
plugins: {
"@typescript-eslint": tseslint,
},
rules: {
"@typescript-eslint/no-floating-promises": "error", // Require Promise-like statements to be handled appropriately. - https://typescript-eslint.io/rules/no-floating-promises/
"@typescript-eslint/no-misused-promises": "error", // Disallow Promises in places not designed to handle them. - https://typescript-eslint.io/rules/no-misused-promises/
},
},
];

132
index.css
View File

@ -11,7 +11,7 @@ html {
body {
margin: 0;
display:flex;
display: flex;
flex-direction: column;
align-items: center;
background: #484050;
@ -49,16 +49,17 @@ body {
@media (pointer: coarse) {
/* hasTouchscreen() && !isTouchControlsEnabled */
body:has(> #touchControls[class=visible]) #app {
body:has(> #touchControls[class="visible"]) #app {
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;
}
}
#layout:fullscreen #dpad, #layout:fullscreen {
#layout:fullscreen #dpad,
#layout:fullscreen {
bottom: 6rem;
}
@ -76,7 +77,6 @@ input {
display: none !important;
}
input:-internal-autofill-selected {
-webkit-background-clip: text;
background-clip: text;
@ -91,18 +91,33 @@ input:-internal-autofill-selected {
--controls-padding: 1rem;
--controls-size-with-padding: calc(var(--controls-size) + var(--controls-padding));
--controls-size-with-wide-padding: calc(var(--controls-size) *1.2 + var(--controls-padding));
--controls-size-with-padding: calc(
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-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-1-offset: calc(var(--controls-padding) + (var(--controls-size) - var(--control-group-extra-size)) / 2);
--control-group-extra-2-offset: calc(
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);
--rect-control-size: calc(var(--controls-size) * 0.74);
font-family: 'emerald';
font-family: "emerald";
font-size: var(--controls-size);
text-shadow: var(--color-dark) var(--text-shadow-size) var(--text-shadow-size);
color: var(--color-light);
@ -146,31 +161,68 @@ input:-internal-autofill-selected {
/* Hide buttons on specific UIs */
/* 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']) #apadNextTab,
#touchControls:not([data-ui-mode^="SETTINGS"]) #apadPreviousTab,
#touchControls:not([data-ui-mode^="SETTINGS"]) #apadNextTab,
#touchControls:is(.config-mode) #apadPreviousTab,
#touchControls:is(.config-mode) #apadNextTab {
display: none;
}
/* 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;
}
/* 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;
}
/* Show cycle buttons only on STARTER_SELECT and on touch configuration panel */
#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT']) #apadOpenFilters,
#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT'], [data-ui-mode='RUN_INFO']) #apadCycleForm,
#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT'], [data-ui-mode='RUN_INFO']) #apadCycleShiny,
#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT']) #apadCycleNature,
#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT'], [data-ui-mode='RUN_INFO']) #apadCycleAbility,
#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT']) #apadCycleGender,
#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT']) #apadCycleVariant {
#touchControls:not(.config-mode):not(
[data-ui-mode="STARTER_SELECT"],
[data-ui-mode="POKEDEX"],
[data-ui-mode="POKEDEX_PAGE"]
)
#apadOpenFilters,
#touchControls:not(.config-mode):not(
[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;
}
@ -217,16 +269,18 @@ input:-internal-autofill-selected {
font-size: var(--small-control-size);
border-radius: 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 {
opacity: var(--touch-control-opacity)
opacity: var(--touch-control-opacity);
}
#configToolbar .orientation-label {
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 */
@ -270,7 +324,8 @@ input:-internal-autofill-selected {
.apad-small > .apad-label {
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 {
@ -320,7 +375,8 @@ input:-internal-autofill-selected {
/* Layout */
#layout:fullscreen #dpad, #layout:fullscreen #apad {
#layout:fullscreen #dpad,
#layout:fullscreen #apad {
bottom: 6rem;
}
@ -354,49 +410,49 @@ a {
/* Firefox old*/
@-moz-keyframes blink {
0% {
opacity:1;
opacity: 1;
}
50% {
opacity:0;
opacity: 0;
}
100% {
opacity:1;
opacity: 1;
}
}
@-webkit-keyframes blink {
0% {
opacity:1;
opacity: 1;
}
50% {
opacity:0;
opacity: 0;
}
100% {
opacity:1;
opacity: 1;
}
}
/* IE */
@-ms-keyframes blink {
0% {
opacity:1;
opacity: 1;
}
50% {
opacity:0;
opacity: 0;
}
100% {
opacity:1;
opacity: 1;
}
}
/* Opera and prob css3 final iteration */
@keyframes blink {
0% {
opacity:1;
opacity: 1;
}
50% {
opacity:0;
opacity: 0;
}
100% {
opacity:1;
opacity: 1;
}
}
.blink-image {

View File

@ -129,11 +129,11 @@
<div id="apadCycleNature" class="apad-button apad-square apad-small" data-key="CYCLE_NATURE">
<span class="apad-label">N</span>
</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>
</div>
<!-- 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>
</div>
<div id="apadStats" class="apad-button apad-rectangle apad-small" data-key="STATS">

View File

@ -1,9 +1,9 @@
pre-commit:
parallel: true
commands:
eslint:
biome-lint:
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
skip:
- merge
@ -11,9 +11,9 @@ pre-commit:
pre-push:
commands:
eslint:
biome-lint:
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:
commands:

604
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "pokemon-rogue-battle",
"version": "1.5.2",
"version": "1.7.7",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "pokemon-rogue-battle",
"version": "1.5.2",
"version": "1.7.7",
"hasInstallScript": true,
"dependencies": {
"@material/material-color-utilities": "^0.2.7",
@ -21,6 +21,7 @@
"phaser3-rex-plugins": "^1.1.84"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@eslint/js": "^9.3.0",
"@hpcc-js/wasm": "^2.18.0",
"@stylistic/eslint-plugin-ts": "^2.6.0-beta.0",
@ -28,7 +29,7 @@
"@types/node": "^20.12.13",
"@typescript-eslint/eslint-plugin": "^8.0.0-alpha.54",
"@typescript-eslint/parser": "^8.0.0-alpha.54",
"@vitest/coverage-istanbul": "^2.0.4",
"@vitest/coverage-istanbul": "^2.1.9",
"dependency-cruiser": "^16.3.10",
"eslint": "^9.7.0",
"eslint-plugin-import-x": "^4.2.1",
@ -40,9 +41,9 @@
"typedoc": "^0.26.4",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.0-alpha.54",
"vite": "^5.4.8",
"vite": "^5.4.14",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.0.4",
"vitest": "^2.1.9",
"vitest-canvas-mock": "^0.3.3"
},
"engines": {
@ -269,9 +270,9 @@
}
},
"node_modules/@babel/helper-string-parser": {
"version": "7.24.8",
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz",
"integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==",
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz",
"integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==",
"dev": true,
"license": "MIT",
"engines": {
@ -279,9 +280,9 @@
}
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.24.7",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz",
"integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==",
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz",
"integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==",
"dev": true,
"license": "MIT",
"engines": {
@ -406,11 +407,14 @@
}
},
"node_modules/@babel/parser": {
"version": "7.25.0",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.0.tgz",
"integrity": "sha512-CzdIU9jdP0dg7HdyB+bHvDJGagUv+qtzZt5rYCWwW6tITNqV9odjp6Qu41gkG0ca5UfdDUWrKkiAnHHdGRnOrA==",
"version": "7.26.8",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.8.tgz",
"integrity": "sha512-TZIQ25pkSoaKEYYaHbbxkfL36GNsQ6iFiBbeuzAkLnXayKR1yP1zFe+NxuZWWsUyvt8icPU9CCq0sgWGXR1GEw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/types": "^7.26.8"
},
"bin": {
"parser": "bin/babel-parser.js"
},
@ -476,20 +480,183 @@
}
},
"node_modules/@babel/types": {
"version": "7.25.0",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.0.tgz",
"integrity": "sha512-LcnxQSsd9aXOIgmmSpvZ/1yo46ra2ESYyqLcryaBZOghxy5qqOBjvCWP5JfkI8yl9rlxRgdLTTMCQQRcN2hdCg==",
"version": "7.26.8",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.8.tgz",
"integrity": "sha512-eUuWapzEGWFEpHFxgEaBG8e3n6S8L3MSu0oda755rOfabWPnh0Our1AozNFVUxGFIhbKgd1ksprsoDGMinTOTA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-string-parser": "^7.24.8",
"@babel/helper-validator-identifier": "^7.24.7",
"to-fast-properties": "^2.0.0"
"@babel/helper-string-parser": "^7.25.9",
"@babel/helper-validator-identifier": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@biomejs/biome": {
"version": "1.9.4",
"resolved": "https://registry.npmjs.org/@biomejs/biome/-/biome-1.9.4.tgz",
"integrity": "sha512-1rkd7G70+o9KkTn5KLmDYXihGoTaIGO9PIIN2ZB7UJxFrWw04CZHPYiMRjYsaDvVV7hP1dYNRLxSANLaBFGpog==",
"dev": true,
"hasInstallScript": true,
"license": "MIT OR Apache-2.0",
"bin": {
"biome": "bin/biome"
},
"engines": {
"node": ">=14.21.3"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/biome"
},
"optionalDependencies": {
"@biomejs/cli-darwin-arm64": "1.9.4",
"@biomejs/cli-darwin-x64": "1.9.4",
"@biomejs/cli-linux-arm64": "1.9.4",
"@biomejs/cli-linux-arm64-musl": "1.9.4",
"@biomejs/cli-linux-x64": "1.9.4",
"@biomejs/cli-linux-x64-musl": "1.9.4",
"@biomejs/cli-win32-arm64": "1.9.4",
"@biomejs/cli-win32-x64": "1.9.4"
}
},
"node_modules/@biomejs/cli-darwin-arm64": {
"version": "1.9.4",
"resolved": "https://registry.npmjs.org/@biomejs/cli-darwin-arm64/-/cli-darwin-arm64-1.9.4.tgz",
"integrity": "sha512-bFBsPWrNvkdKrNCYeAp+xo2HecOGPAy9WyNyB/jKnnedgzl4W4Hb9ZMzYNbf8dMCGmUdSavlYHiR01QaYR58cw==",
"cpu": [
"arm64"
],
"dev": true,
"license": "MIT OR Apache-2.0",
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": ">=14.21.3"
}
},
"node_modules/@biomejs/cli-darwin-x64": {
"version": "1.9.4",
"resolved": "https://registry.npmjs.org/@biomejs/cli-darwin-x64/-/cli-darwin-x64-1.9.4.tgz",
"integrity": "sha512-ngYBh/+bEedqkSevPVhLP4QfVPCpb+4BBe2p7Xs32dBgs7rh9nY2AIYUL6BgLw1JVXV8GlpKmb/hNiuIxfPfZg==",
"cpu": [
"x64"
],
"dev": true,
"license": "MIT OR Apache-2.0",
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": ">=14.21.3"
}
},
"node_modules/@biomejs/cli-linux-arm64": {
"version": "1.9.4",
"resolved": "https://registry.npmjs.org/@biomejs/cli-linux-arm64/-/cli-linux-arm64-1.9.4.tgz",
"integrity": "sha512-fJIW0+LYujdjUgJJuwesP4EjIBl/N/TcOX3IvIHJQNsAqvV2CHIogsmA94BPG6jZATS4Hi+xv4SkBBQSt1N4/g==",
"cpu": [
"arm64"
],
"dev": true,
"license": "MIT OR Apache-2.0",
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=14.21.3"
}
},
"node_modules/@biomejs/cli-linux-arm64-musl": {
"version": "1.9.4",
"resolved": "https://registry.npmjs.org/@biomejs/cli-linux-arm64-musl/-/cli-linux-arm64-musl-1.9.4.tgz",
"integrity": "sha512-v665Ct9WCRjGa8+kTr0CzApU0+XXtRgwmzIf1SeKSGAv+2scAlW6JR5PMFo6FzqqZ64Po79cKODKf3/AAmECqA==",
"cpu": [
"arm64"
],
"dev": true,
"license": "MIT OR Apache-2.0",
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=14.21.3"
}
},
"node_modules/@biomejs/cli-linux-x64": {
"version": "1.9.4",
"resolved": "https://registry.npmjs.org/@biomejs/cli-linux-x64/-/cli-linux-x64-1.9.4.tgz",
"integrity": "sha512-lRCJv/Vi3Vlwmbd6K+oQ0KhLHMAysN8lXoCI7XeHlxaajk06u7G+UsFSO01NAs5iYuWKmVZjmiOzJ0OJmGsMwg==",
"cpu": [
"x64"
],
"dev": true,
"license": "MIT OR Apache-2.0",
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=14.21.3"
}
},
"node_modules/@biomejs/cli-linux-x64-musl": {
"version": "1.9.4",
"resolved": "https://registry.npmjs.org/@biomejs/cli-linux-x64-musl/-/cli-linux-x64-musl-1.9.4.tgz",
"integrity": "sha512-gEhi/jSBhZ2m6wjV530Yy8+fNqG8PAinM3oV7CyO+6c3CEh16Eizm21uHVsyVBEB6RIM8JHIl6AGYCv6Q6Q9Tg==",
"cpu": [
"x64"
],
"dev": true,
"license": "MIT OR Apache-2.0",
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=14.21.3"
}
},
"node_modules/@biomejs/cli-win32-arm64": {
"version": "1.9.4",
"resolved": "https://registry.npmjs.org/@biomejs/cli-win32-arm64/-/cli-win32-arm64-1.9.4.tgz",
"integrity": "sha512-tlbhLk+WXZmgwoIKwHIHEBZUwxml7bRJgk0X2sPyNR3S93cdRq6XulAZRQJ17FYGGzWne0fgrXBKpl7l4M87Hg==",
"cpu": [
"arm64"
],
"dev": true,
"license": "MIT OR Apache-2.0",
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">=14.21.3"
}
},
"node_modules/@biomejs/cli-win32-x64": {
"version": "1.9.4",
"resolved": "https://registry.npmjs.org/@biomejs/cli-win32-x64/-/cli-win32-x64-1.9.4.tgz",
"integrity": "sha512-8Y5wMhVIPaWe6jw2H+KlEm4wP/f7EW3810ZLmDlrEEy5KvBsb9ECEfu/kMWD484ijfQ8+nIi0giMgu9g1UAuuA==",
"cpu": [
"x64"
],
"dev": true,
"license": "MIT OR Apache-2.0",
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">=14.21.3"
}
},
"node_modules/@bundled-es-modules/cookie": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@bundled-es-modules/cookie/-/cookie-2.0.0.tgz",
@ -2145,20 +2312,20 @@
}
},
"node_modules/@vitest/coverage-istanbul": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/@vitest/coverage-istanbul/-/coverage-istanbul-2.0.4.tgz",
"integrity": "sha512-6VibYMkXh8cJm5Bg8JYeOoR4oURlPf4YKP9kuVRE/NKasfYrXPnzSwuxrpgMbgOfPj13KUJXgMB3VAGukECtlQ==",
"version": "2.1.9",
"resolved": "https://registry.npmjs.org/@vitest/coverage-istanbul/-/coverage-istanbul-2.1.9.tgz",
"integrity": "sha512-vdYE4FkC/y2lxcN3Dcj54Bw+ericmDwiex0B8LV5F/YNYEYP1mgVwhPnHwWGAXu38qizkjOuyczKbFTALfzFKw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@istanbuljs/schema": "^0.1.3",
"debug": "^4.3.5",
"debug": "^4.3.7",
"istanbul-lib-coverage": "^3.2.2",
"istanbul-lib-instrument": "^6.0.3",
"istanbul-lib-report": "^3.0.1",
"istanbul-lib-source-maps": "^5.0.6",
"istanbul-reports": "^3.1.7",
"magicast": "^0.3.4",
"magicast": "^0.3.5",
"test-exclude": "^7.0.1",
"tinyrainbow": "^1.2.0"
},
@ -2166,29 +2333,56 @@
"url": "https://opencollective.com/vitest"
},
"peerDependencies": {
"vitest": "2.0.4"
"vitest": "2.1.9"
}
},
"node_modules/@vitest/expect": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-2.0.4.tgz",
"integrity": "sha512-39jr5EguIoanChvBqe34I8m1hJFI4+jxvdOpD7gslZrVQBKhh8H9eD7J/LJX4zakrw23W+dITQTDqdt43xVcJw==",
"version": "2.1.9",
"resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-2.1.9.tgz",
"integrity": "sha512-UJCIkTBenHeKT1TTlKMJWy1laZewsRIzYighyYiJKZreqtdxSos/S1t+ktRMQWu2CKqaarrkeszJx1cgC5tGZw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@vitest/spy": "2.0.4",
"@vitest/utils": "2.0.4",
"chai": "^5.1.1",
"@vitest/spy": "2.1.9",
"@vitest/utils": "2.1.9",
"chai": "^5.1.2",
"tinyrainbow": "^1.2.0"
},
"funding": {
"url": "https://opencollective.com/vitest"
}
},
"node_modules/@vitest/mocker": {
"version": "2.1.9",
"resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-2.1.9.tgz",
"integrity": "sha512-tVL6uJgoUdi6icpxmdrn5YNo3g3Dxv+IHJBr0GXHaEdTcw3F+cPKnsXFhli6nO+f/6SDKPHEK1UN+k+TQv0Ehg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@vitest/spy": "2.1.9",
"estree-walker": "^3.0.3",
"magic-string": "^0.30.12"
},
"funding": {
"url": "https://opencollective.com/vitest"
},
"peerDependencies": {
"msw": "^2.4.9",
"vite": "^5.0.0"
},
"peerDependenciesMeta": {
"msw": {
"optional": true
},
"vite": {
"optional": true
}
}
},
"node_modules/@vitest/pretty-format": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-2.0.4.tgz",
"integrity": "sha512-RYZl31STbNGqf4l2eQM1nvKPXE0NhC6Eq0suTTePc4mtMQ1Fn8qZmjV4emZdEdG2NOWGKSCrHZjmTqDCDoeFBw==",
"version": "2.1.9",
"resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-2.1.9.tgz",
"integrity": "sha512-KhRIdGV2U9HOUzxfiHmY8IFHTdqtOhIzCpd8WRdJiE7D/HUcZVD0EgQCVjm+Q9gkUXWgBvMmTtZgIG48wq7sOQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@ -2199,13 +2393,13 @@
}
},
"node_modules/@vitest/runner": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-2.0.4.tgz",
"integrity": "sha512-Gk+9Su/2H2zNfNdeJR124gZckd5st4YoSuhF1Rebi37qTXKnqYyFCd9KP4vl2cQHbtuVKjfEKrNJxHHCW8thbQ==",
"version": "2.1.9",
"resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-2.1.9.tgz",
"integrity": "sha512-ZXSSqTFIrzduD63btIfEyOmNcBmQvgOVsPNPe0jYtESiXkhd8u2erDLnMxmGrDCwHCCHE7hxwRDCT3pt0esT4g==",
"dev": true,
"license": "MIT",
"dependencies": {
"@vitest/utils": "2.0.4",
"@vitest/utils": "2.1.9",
"pathe": "^1.1.2"
},
"funding": {
@ -2213,14 +2407,14 @@
}
},
"node_modules/@vitest/snapshot": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-2.0.4.tgz",
"integrity": "sha512-or6Mzoz/pD7xTvuJMFYEtso1vJo1S5u6zBTinfl+7smGUhqybn6VjzCDMhmTyVOFWwkCMuNjmNNxnyXPgKDoPw==",
"version": "2.1.9",
"resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-2.1.9.tgz",
"integrity": "sha512-oBO82rEjsxLNJincVhLhaxxZdEtV0EFHMK5Kmx5sJ6H9L183dHECjiefOAdnqpIgT5eZwT04PoggUnW88vOBNQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@vitest/pretty-format": "2.0.4",
"magic-string": "^0.30.10",
"@vitest/pretty-format": "2.1.9",
"magic-string": "^0.30.12",
"pathe": "^1.1.2"
},
"funding": {
@ -2228,28 +2422,27 @@
}
},
"node_modules/@vitest/spy": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-2.0.4.tgz",
"integrity": "sha512-uTXU56TNoYrTohb+6CseP8IqNwlNdtPwEO0AWl+5j7NelS6x0xZZtP0bDWaLvOfUbaYwhhWp1guzXUxkC7mW7Q==",
"version": "2.1.9",
"resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-2.1.9.tgz",
"integrity": "sha512-E1B35FwzXXTs9FHNK6bDszs7mtydNi5MIfUWpceJ8Xbfb1gBMscAnwLbEu+B44ed6W3XjL9/ehLPHR1fkf1KLQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"tinyspy": "^3.0.0"
"tinyspy": "^3.0.2"
},
"funding": {
"url": "https://opencollective.com/vitest"
}
},
"node_modules/@vitest/utils": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-2.0.4.tgz",
"integrity": "sha512-Zc75QuuoJhOBnlo99ZVUkJIuq4Oj0zAkrQ2VzCqNCx6wAwViHEh5Fnp4fiJTE9rA+sAoXRf00Z9xGgfEzV6fzQ==",
"version": "2.1.9",
"resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-2.1.9.tgz",
"integrity": "sha512-v0psaMSkNJ3A2NMrUEHFRzJtDPFn+/VWZ5WxImB21T9fjucJRmS7xCS3ppEnARb9y11OAzaD+P2Ps+b+BGX5iQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@vitest/pretty-format": "2.0.4",
"estree-walker": "^3.0.3",
"loupe": "^3.1.1",
"@vitest/pretty-format": "2.1.9",
"loupe": "^3.1.2",
"tinyrainbow": "^1.2.0"
},
"funding": {
@ -2545,9 +2738,9 @@
"license": "CC-BY-4.0"
},
"node_modules/chai": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/chai/-/chai-5.1.1.tgz",
"integrity": "sha512-pT1ZgP8rPNqUgieVaEY+ryQr6Q4HXNg8Ei9UnLUrjN4IA7dvQC5JB+/kxVcPNDHyBcc/26CXPkbNzq3qwrOEKA==",
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/chai/-/chai-5.1.2.tgz",
"integrity": "sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw==",
"dev": true,
"license": "MIT",
"dependencies": {
@ -2800,13 +2993,13 @@
}
},
"node_modules/debug": {
"version": "4.3.5",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz",
"integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==",
"version": "4.4.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
"integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
"dev": true,
"license": "MIT",
"dependencies": {
"ms": "2.1.2"
"ms": "^2.1.3"
},
"engines": {
"node": ">=6.0"
@ -3004,6 +3197,13 @@
"node": ">= 0.4"
}
},
"node_modules/es-module-lexer": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.6.0.tgz",
"integrity": "sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==",
"dev": true,
"license": "MIT"
},
"node_modules/esbuild": {
"version": "0.21.5",
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz",
@ -3450,28 +3650,14 @@
"integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==",
"license": "MIT"
},
"node_modules/execa": {
"version": "8.0.1",
"resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz",
"integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==",
"node_modules/expect-type": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.1.0.tgz",
"integrity": "sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==",
"dev": true,
"license": "MIT",
"dependencies": {
"cross-spawn": "^7.0.3",
"get-stream": "^8.0.1",
"human-signals": "^5.0.0",
"is-stream": "^3.0.0",
"merge-stream": "^2.0.0",
"npm-run-path": "^5.1.0",
"onetime": "^6.0.0",
"signal-exit": "^4.1.0",
"strip-final-newline": "^3.0.0"
},
"license": "Apache-2.0",
"engines": {
"node": ">=16.17"
},
"funding": {
"url": "https://github.com/sindresorhus/execa?sponsor=1"
"node": ">=12.0.0"
}
},
"node_modules/external-editor": {
@ -3695,16 +3881,6 @@
"node": "6.* || 8.* || >= 10.*"
}
},
"node_modules/get-func-name": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.2.tgz",
"integrity": "sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==",
"dev": true,
"license": "MIT",
"engines": {
"node": "*"
}
},
"node_modules/get-intrinsic": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz",
@ -3724,19 +3900,6 @@
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/get-stream": {
"version": "8.0.1",
"resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz",
"integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=16"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/get-tsconfig": {
"version": "4.8.0",
"resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.8.0.tgz",
@ -3968,16 +4131,6 @@
"node": ">= 14"
}
},
"node_modules/human-signals": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz",
"integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==",
"dev": true,
"license": "Apache-2.0",
"engines": {
"node": ">=16.17.0"
}
},
"node_modules/i18next": {
"version": "23.12.2",
"resolved": "https://registry.npmjs.org/i18next/-/i18next-23.12.2.tgz",
@ -4240,19 +4393,6 @@
"dev": true,
"license": "MIT"
},
"node_modules/is-stream": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz",
"integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==",
"dev": true,
"license": "MIT",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/isarray": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz",
@ -4716,14 +4856,11 @@
"license": "MIT"
},
"node_modules/loupe": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/loupe/-/loupe-3.1.1.tgz",
"integrity": "sha512-edNu/8D5MKVfGVFRhFf8aAxiTM6Wumfz5XsaatSxlD3w4R1d/WEKUTydCdPGbl9K7QG/Ca3GnDV2sIKIpXRQcw==",
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/loupe/-/loupe-3.1.3.tgz",
"integrity": "sha512-kkIp7XSkP78ZxJEsSxW3712C6teJVoeHHwgo9zJ380de7IYyJ2ISlxojcH2pC5OFLewESmnRi/+XCDIEEVyoug==",
"dev": true,
"license": "MIT",
"dependencies": {
"get-func-name": "^2.0.1"
}
"license": "MIT"
},
"node_modules/lru-cache": {
"version": "5.1.1",
@ -4743,9 +4880,9 @@
"license": "MIT"
},
"node_modules/magic-string": {
"version": "0.30.11",
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.11.tgz",
"integrity": "sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==",
"version": "0.30.17",
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.17.tgz",
"integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==",
"dev": true,
"license": "MIT",
"dependencies": {
@ -4753,14 +4890,14 @@
}
},
"node_modules/magicast": {
"version": "0.3.4",
"resolved": "https://registry.npmjs.org/magicast/-/magicast-0.3.4.tgz",
"integrity": "sha512-TyDF/Pn36bBji9rWKHlZe+PZb6Mx5V8IHCSxk7X4aljM4e/vyDvZZYwHewdVaqiA0nb3ghfHU/6AUpDxWoER2Q==",
"version": "0.3.5",
"resolved": "https://registry.npmjs.org/magicast/-/magicast-0.3.5.tgz",
"integrity": "sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/parser": "^7.24.4",
"@babel/types": "^7.24.0",
"@babel/parser": "^7.25.4",
"@babel/types": "^7.25.4",
"source-map-js": "^1.2.0"
}
},
@ -4819,13 +4956,6 @@
"url": "https://github.com/sindresorhus/memoize?sponsor=1"
}
},
"node_modules/merge-stream": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
"integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
"dev": true,
"license": "MIT"
},
"node_modules/merge2": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
@ -4886,19 +5016,6 @@
"node": ">= 0.6"
}
},
"node_modules/mimic-fn": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz",
"integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/mimic-function": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/mimic-function/-/mimic-function-5.0.1.tgz",
@ -4959,9 +5076,9 @@
}
},
"node_modules/ms": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
"version": "2.1.3",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
"dev": true,
"license": "MIT"
},
@ -5138,35 +5255,6 @@
"integrity": "sha512-Ww6ZlOiEQfPfXM45v17oabk77Z7mg5bOt7AjDyzy7RjK9OrLrLC8dyZQoAPEOtFX9SaNf1Tdvr5gRJWdTJj7GA==",
"dev": true
},
"node_modules/npm-run-path": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz",
"integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"path-key": "^4.0.0"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/npm-run-path/node_modules/path-key": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz",
"integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/nwsapi": {
"version": "2.2.12",
"resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.12.tgz",
@ -5182,22 +5270,6 @@
"node": ">= 0.4"
}
},
"node_modules/onetime": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz",
"integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"mimic-fn": "^4.0.0"
},
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/optionator": {
"version": "0.9.4",
"resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz",
@ -5978,9 +6050,9 @@
}
},
"node_modules/std-env": {
"version": "3.7.0",
"resolved": "https://registry.npmjs.org/std-env/-/std-env-3.7.0.tgz",
"integrity": "sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==",
"version": "3.8.0",
"resolved": "https://registry.npmjs.org/std-env/-/std-env-3.8.0.tgz",
"integrity": "sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==",
"dev": true,
"license": "MIT"
},
@ -6106,19 +6178,6 @@
"node": ">=4"
}
},
"node_modules/strip-final-newline": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz",
"integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/strip-json-comments": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
@ -6225,16 +6284,23 @@
"license": "MIT"
},
"node_modules/tinybench": {
"version": "2.8.0",
"resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.8.0.tgz",
"integrity": "sha512-1/eK7zUnIklz4JUUlL+658n58XO2hHLQfSk1Zf2LKieUjxidN16eKFEoDEfjHc3ohofSSqK3X5yO6VGb6iW8Lw==",
"version": "2.9.0",
"resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz",
"integrity": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==",
"dev": true,
"license": "MIT"
},
"node_modules/tinyexec": {
"version": "0.3.2",
"resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.2.tgz",
"integrity": "sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==",
"dev": true,
"license": "MIT"
},
"node_modules/tinypool": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/tinypool/-/tinypool-1.0.0.tgz",
"integrity": "sha512-KIKExllK7jp3uvrNtvRBYBWBOAXSX8ZvoaD8T+7KB/QHIuoJW3Pmr60zucywjAlMb5TeXUkcs/MWeWLu0qvuAQ==",
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/tinypool/-/tinypool-1.0.2.tgz",
"integrity": "sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==",
"dev": true,
"license": "MIT",
"engines": {
@ -6252,9 +6318,9 @@
}
},
"node_modules/tinyspy": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/tinyspy/-/tinyspy-3.0.0.tgz",
"integrity": "sha512-q5nmENpTHgiPVd1cJDDc9cVoYN5x4vCvwT3FMilvKPKneCBZAxn2YWQjDF0UMcE9k0Cay1gBiDfTMU0g+mPMQA==",
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/tinyspy/-/tinyspy-3.0.2.tgz",
"integrity": "sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==",
"dev": true,
"license": "MIT",
"engines": {
@ -6274,16 +6340,6 @@
"node": ">=0.6.0"
}
},
"node_modules/to-fast-properties": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
"integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=4"
}
},
"node_modules/to-regex-range": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
@ -6561,10 +6617,11 @@
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
},
"node_modules/vite": {
"version": "5.4.8",
"resolved": "https://registry.npmjs.org/vite/-/vite-5.4.8.tgz",
"integrity": "sha512-FqrItQ4DT1NC4zCUqMB4c4AZORMKIa0m8/URVCZ77OZ/QSNeJ54bU1vrFADbDsuwfIPcgknRkmqakQcgnL4GiQ==",
"version": "5.4.14",
"resolved": "https://registry.npmjs.org/vite/-/vite-5.4.14.tgz",
"integrity": "sha512-EK5cY7Q1D8JNhSaPKVK4pwBFvaTmZxEnoKXLG/U9gmdDcihQGNzFlgIvaxezFR4glP1LsuiedwMBqCXH3wZccA==",
"dev": true,
"license": "MIT",
"dependencies": {
"esbuild": "^0.21.3",
"postcss": "^8.4.43",
@ -6620,16 +6677,16 @@
}
},
"node_modules/vite-node": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/vite-node/-/vite-node-2.0.4.tgz",
"integrity": "sha512-ZpJVkxcakYtig5iakNeL7N3trufe3M6vGuzYAr4GsbCTwobDeyPJpE4cjDhhPluv8OvQCFzu2LWp6GkoKRITXA==",
"version": "2.1.9",
"resolved": "https://registry.npmjs.org/vite-node/-/vite-node-2.1.9.tgz",
"integrity": "sha512-AM9aQ/IPrW/6ENLQg3AGY4K1N2TGZdR5e4gu/MmmR2xR3Ll1+dib+nook92g4TV3PXVyeyxdWwtaCAiUL0hMxA==",
"dev": true,
"license": "MIT",
"dependencies": {
"cac": "^6.7.14",
"debug": "^4.3.5",
"debug": "^4.3.7",
"es-module-lexer": "^1.5.4",
"pathe": "^1.1.2",
"tinyrainbow": "^1.2.0",
"vite": "^5.0.0"
},
"bin": {
@ -6663,30 +6720,31 @@
}
},
"node_modules/vitest": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/vitest/-/vitest-2.0.4.tgz",
"integrity": "sha512-luNLDpfsnxw5QSW4bISPe6tkxVvv5wn2BBs/PuDRkhXZ319doZyLOBr1sjfB5yCEpTiU7xCAdViM8TNVGPwoog==",
"version": "2.1.9",
"resolved": "https://registry.npmjs.org/vitest/-/vitest-2.1.9.tgz",
"integrity": "sha512-MSmPM9REYqDGBI8439mA4mWhV5sKmDlBKWIYbA3lRb2PTHACE0mgKwA8yQ2xq9vxDTuk4iPrECBAEW2aoFXY0Q==",
"dev": true,
"license": "MIT",
"dependencies": {
"@ampproject/remapping": "^2.3.0",
"@vitest/expect": "2.0.4",
"@vitest/pretty-format": "^2.0.4",
"@vitest/runner": "2.0.4",
"@vitest/snapshot": "2.0.4",
"@vitest/spy": "2.0.4",
"@vitest/utils": "2.0.4",
"chai": "^5.1.1",
"debug": "^4.3.5",
"execa": "^8.0.1",
"magic-string": "^0.30.10",
"@vitest/expect": "2.1.9",
"@vitest/mocker": "2.1.9",
"@vitest/pretty-format": "^2.1.9",
"@vitest/runner": "2.1.9",
"@vitest/snapshot": "2.1.9",
"@vitest/spy": "2.1.9",
"@vitest/utils": "2.1.9",
"chai": "^5.1.2",
"debug": "^4.3.7",
"expect-type": "^1.1.0",
"magic-string": "^0.30.12",
"pathe": "^1.1.2",
"std-env": "^3.7.0",
"tinybench": "^2.8.0",
"tinypool": "^1.0.0",
"std-env": "^3.8.0",
"tinybench": "^2.9.0",
"tinyexec": "^0.3.1",
"tinypool": "^1.0.1",
"tinyrainbow": "^1.2.0",
"vite": "^5.0.0",
"vite-node": "2.0.4",
"vite-node": "2.1.9",
"why-is-node-running": "^2.3.0"
},
"bin": {
@ -6701,8 +6759,8 @@
"peerDependencies": {
"@edge-runtime/vm": "*",
"@types/node": "^18.0.0 || >=20.0.0",
"@vitest/browser": "2.0.4",
"@vitest/ui": "2.0.4",
"@vitest/browser": "2.1.9",
"@vitest/ui": "2.1.9",
"happy-dom": "*",
"jsdom": "*"
},

View File

@ -1,7 +1,7 @@
{
"name": "pokemon-rogue-battle",
"private": true,
"version": "1.5.2",
"version": "1.7.7",
"type": "module",
"scripts": {
"start": "vite",
@ -16,6 +16,8 @@
"typecheck": "tsc --noEmit",
"eslint": "eslint --fix .",
"eslint-ci": "eslint .",
"biome": "biome check --write --changed --no-errors-on-unmatched",
"biome-ci": "biome ci --diagnostic-level=error --reporter=github --changed --no-errors-on-unmatched",
"docs": "typedoc",
"depcruise": "depcruise src",
"depcruise:graph": "depcruise src --output-type dot | node dependency-graph.js > dependency-graph.svg",
@ -26,6 +28,7 @@
"update-locales:remote": "git submodule update --progress --init --recursive --force --remote"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@eslint/js": "^9.3.0",
"@hpcc-js/wasm": "^2.18.0",
"@stylistic/eslint-plugin-ts": "^2.6.0-beta.0",
@ -33,7 +36,7 @@
"@types/node": "^20.12.13",
"@typescript-eslint/eslint-plugin": "^8.0.0-alpha.54",
"@typescript-eslint/parser": "^8.0.0-alpha.54",
"@vitest/coverage-istanbul": "^2.0.4",
"@vitest/coverage-istanbul": "^2.1.9",
"dependency-cruiser": "^16.3.10",
"eslint": "^9.7.0",
"eslint-plugin-import-x": "^4.2.1",
@ -45,9 +48,9 @@
"typedoc": "^0.26.4",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.0-alpha.54",
"vite": "^5.4.8",
"vite": "^5.4.14",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.0.4",
"vitest": "^2.1.9",
"vitest-canvas-mock": "^0.3.3"
},
"dependencies": {
@ -64,11 +67,5 @@
},
"engines": {
"node": ">=20.0.0"
},
"imports": {
"#enums/*": "./enums/*",
"#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",
"531-mega",
"531-mega",
"569-gigantamax",
"569-gigantamax",
"6-mega",
"6-mega",
"6-mega-x",
@ -201,6 +203,8 @@
"6211",
"6215",
"6215",
"6215f",
"6215f",
"65-mega",
"65-mega",
"650",
@ -259,10 +263,10 @@
"666-fancy",
"666-garden",
"666-garden",
"666-high",
"666-high",
"666-icy",
"666-icy",
"666-high-plains",
"666-high-plains",
"666-icy-snow",
"666-icy-snow",
"666-jungle",
"666-jungle",
"666-marine",
@ -275,8 +279,8 @@
"666-monsoon",
"666-ocean",
"666-ocean",
"666-poke",
"666-poke",
"666-poke-ball",
"666-poke-ball",
"666-polar",
"666-polar",
"666-river",
@ -291,8 +295,8 @@
"666-tundra",
"667",
"667",
"668-female",
"668-female",
"668f",
"668f",
"668",
"668",
"669-blue",
@ -337,8 +341,6 @@
"6724",
"673",
"673",
"674",
"674",
"675",
"675",
"676",
@ -381,16 +383,12 @@
"692",
"693",
"693",
"694",
"694",
"695",
"695",
"696",
"696",
"697",
"697",
"698",
"698",
"699",
"699",
"700",
@ -399,18 +397,12 @@
"701",
"702",
"702",
"703",
"703",
"704",
"704",
"705",
"705",
"706",
"706",
"707",
"707",
"708",
"708",
"709",
"709",
"710",
@ -421,8 +413,6 @@
"712",
"713",
"713",
"714",
"714",
"715",
"715",
"716-active",
@ -431,16 +421,10 @@
"716-neutral",
"717",
"717",
"718-10",
"718-10",
"718-complete",
"718-complete",
"718",
"718",
"719-mega",
"719-mega",
"719",
"719",
"720-unbound",
"720-unbound",
"720",
@ -711,6 +695,8 @@
"814",
"815",
"815",
"815-gigantamax",
"815-gigantamax",
"816",
"816",
"817",
@ -761,6 +747,8 @@
"838",
"839",
"839",
"839-gigantamax",
"839-gigantamax",
"840",
"840",
"841",
@ -1085,8 +1073,6 @@
"978-droopy",
"978-stretchy",
"978-stretchy",
"979",
"979",
"980",
"980",
"981",
@ -1315,6 +1301,8 @@
"487b-origin",
"531b-mega",
"531b-mega",
"569b-gigantamax",
"569b-gigantamax",
"6b-mega",
"6b-mega",
"6b-mega-x",
@ -1333,6 +1321,8 @@
"6211b",
"6215b",
"6215b",
"6215bf",
"6215bf",
"65b-mega",
"65b-mega",
"650b",
@ -1391,10 +1381,10 @@
"666b-fancy",
"666b-garden",
"666b-garden",
"666b-high",
"666b-high",
"666b-icy",
"666b-icy",
"666b-high-plains",
"666b-high-plains",
"666b-icy-snow",
"666b-icy-snow",
"666b-jungle",
"666b-jungle",
"666b-marine",
@ -1407,8 +1397,8 @@
"666b-monsoon",
"666b-ocean",
"666b-ocean",
"666b-poke",
"666b-poke",
"666b-poke-ball",
"666b-poke-ball",
"666b-polar",
"666b-polar",
"666b-river",
@ -1423,8 +1413,8 @@
"666b-tundra",
"667b",
"667b",
"668b-female",
"668b-female",
"668bf",
"668bf",
"668b",
"668b",
"669b-blue",
@ -1469,8 +1459,6 @@
"6724b",
"673b",
"673b",
"674b",
"674b",
"675b",
"675b",
"676b",
@ -1513,16 +1501,12 @@
"692b",
"693b",
"693b",
"694b",
"694b",
"695b",
"695b",
"696b",
"696b",
"697b",
"697b",
"698b",
"698b",
"699b",
"699b",
"700b",
@ -1531,18 +1515,12 @@
"701b",
"702b",
"702b",
"703b",
"703b",
"704b",
"704b",
"705b",
"705b",
"706b",
"706b",
"707b",
"707b",
"708b",
"708b",
"709b",
"709b",
"710b",
@ -1553,8 +1531,6 @@
"712b",
"713b",
"713b",
"714b",
"714b",
"715b",
"715b",
"716b-active",
@ -1563,16 +1539,10 @@
"716b-neutral",
"717b",
"717b",
"718b-10",
"718b-10",
"718b-complete",
"718b-complete",
"718b",
"718b",
"719b-mega",
"719b-mega",
"719b",
"719b",
"720b-unbound",
"720b-unbound",
"720b",
@ -1843,6 +1813,8 @@
"814b",
"815b",
"815b",
"815b-gigantamax",
"815b-gigantamax",
"816b",
"816b",
"817b",
@ -1893,6 +1865,8 @@
"838b",
"839b",
"839b",
"839b-gigantamax",
"839b-gigantamax",
"840b",
"840b",
"841b",
@ -2219,8 +2193,6 @@
"978b-droopy",
"978b-stretchy",
"978b-stretchy",
"979b",
"979b",
"980b",
"980b",
"981b",
@ -2449,6 +2421,8 @@
"487sb-origin",
"531sb-mega",
"531sb-mega",
"569sb-gigantamax",
"569sb-gigantamax",
"6sb-mega",
"6sb-mega",
"6sb-mega-x",
@ -2467,6 +2441,8 @@
"6211sb",
"6215sb",
"6215sb",
"6215sbf",
"6215sbf",
"65sb-mega",
"65sb-mega",
"650sb",
@ -2525,10 +2501,10 @@
"666sb-fancy",
"666sb-garden",
"666sb-garden",
"666sb-high",
"666sb-high",
"666sb-icy",
"666sb-icy",
"666sb-high-plains",
"666sb-high-plains",
"666sb-icy-snow",
"666sb-icy-snow",
"666sb-jungle",
"666sb-jungle",
"666sb-marine",
@ -2541,8 +2517,8 @@
"666sb-monsoon",
"666sb-ocean",
"666sb-ocean",
"666sb-poke",
"666sb-poke",
"666sb-poke-ball",
"666sb-poke-ball",
"666sb-polar",
"666sb-polar",
"666sb-river",
@ -2559,6 +2535,8 @@
"667sb",
"668sb",
"668sb",
"668sbf",
"668sbf",
"669sb-blue",
"669sb-blue",
"669sb-orange",
@ -2601,8 +2579,6 @@
"6724sb",
"673sb",
"673sb",
"674sb",
"674sb",
"675sb",
"675sb",
"676sb",
@ -2645,16 +2621,12 @@
"692sb",
"693sb",
"693sb",
"694sb",
"694sb",
"695sb",
"695sb",
"696sb",
"696sb",
"697sb",
"697sb",
"698sb",
"698sb",
"699sb",
"699sb",
"700sb",
@ -2663,18 +2635,12 @@
"701sb",
"702sb",
"702sb",
"703sb",
"703sb",
"704sb",
"704sb",
"705sb",
"705sb",
"706sb",
"706sb",
"707sb",
"707sb",
"708sb",
"708sb",
"709sb",
"709sb",
"710sb",
@ -2685,8 +2651,6 @@
"712sb",
"713sb",
"713sb",
"714sb",
"714sb",
"715sb",
"715sb",
"716sb-active",
@ -2695,16 +2659,10 @@
"716sb-neutral",
"717sb",
"717sb",
"718sb-10",
"718sb-10",
"718sb-complete",
"718sb-complete",
"718sb",
"718sb",
"719sb-mega",
"719sb-mega",
"719sb",
"719sb",
"720sb-unbound",
"720sb-unbound",
"720sb",
@ -2975,6 +2933,8 @@
"814sb",
"815sb",
"815sb",
"815sb-gigantamax",
"815sb-gigantamax",
"816sb",
"816sb",
"817sb",
@ -3025,6 +2985,8 @@
"838sb",
"839sb",
"839sb",
"839sb-gigantamax",
"839sb-gigantamax",
"840sb",
"840sb",
"841sb",
@ -3351,8 +3313,6 @@
"978sb-droopy",
"978sb-stretchy",
"978sb-stretchy",
"979sb",
"979sb",
"980sb",
"980sb",
"981sb",
@ -3586,6 +3546,8 @@
"487s-origin",
"531s-mega",
"531s-mega",
"569s-gigantamax",
"569s-gigantamax",
"6s-mega",
"6s-mega",
"6s-mega-x",
@ -3604,6 +3566,8 @@
"6211s",
"6215s",
"6215s",
"6215sf",
"6215sf",
"65s-mega",
"65s-mega",
"650s",
@ -3662,10 +3626,10 @@
"666s-fancy",
"666s-garden",
"666s-garden",
"666s-high",
"666s-high",
"666s-icy",
"666s-icy",
"666s-high-plains",
"666s-high-plains",
"666s-icy-snow",
"666s-icy-snow",
"666s-jungle",
"666s-jungle",
"666s-marine",
@ -3678,8 +3642,8 @@
"666s-monsoon",
"666s-ocean",
"666s-ocean",
"666s-poke",
"666s-poke",
"666s-poke-ball",
"666s-poke-ball",
"666s-polar",
"666s-polar",
"666s-river",
@ -3694,8 +3658,8 @@
"666s-tundra",
"667s",
"667s",
"668s-female",
"668s-female",
"668sf",
"668sf",
"668s",
"668s",
"669s-blue",
@ -3740,8 +3704,6 @@
"6724s",
"673s",
"673s",
"674s",
"674s",
"675s",
"675s",
"676s",
@ -3784,16 +3746,12 @@
"692s",
"693s",
"693s",
"694s",
"694s",
"695s",
"695s",
"696s",
"696s",
"697s",
"697s",
"698s",
"698s",
"699s",
"699s",
"700s",
@ -3802,18 +3760,12 @@
"701s",
"702s",
"702s",
"703s",
"703s",
"704s",
"704s",
"705s",
"705s",
"706s",
"706s",
"707s",
"707s",
"708s",
"708s",
"709s",
"709s",
"710s",
@ -3824,8 +3776,6 @@
"712s",
"713s",
"713s",
"714s",
"714s",
"715s",
"715s",
"716s-active",
@ -3834,16 +3784,10 @@
"716s-neutral",
"717s",
"717s",
"718s-10",
"718s-10",
"718s-complete",
"718s-complete",
"718s",
"718s",
"719s-mega",
"719s-mega",
"719s",
"719s",
"720s-unbound",
"720s-unbound",
"720s",
@ -4114,6 +4058,8 @@
"814s",
"815s",
"815s",
"815s-gigantamax",
"815s-gigantamax",
"816s",
"816s",
"817s",
@ -4164,6 +4110,8 @@
"838s",
"839s",
"839s",
"839s-gigantamax",
"839s-gigantamax",
"840s",
"840s",
"841s",
@ -4490,8 +4438,6 @@
"978s-droopy",
"978s-stretchy",
"978s-stretchy",
"979s",
"979s",
"980s",
"980s",
"981s",
@ -4587,6 +4533,7 @@
"475-mega_3",
"475-mega_3",
"6215",
"6215f",
"653",
"654",
"6549",
@ -4598,19 +4545,15 @@
"666-archipelago",
"666-continental",
"666-elegant",
"666-fancy_2",
"666-fancy_2",
"666-fancy_3",
"666-fancy_3",
"666-fancy",
"666-fancy",
"666-garden",
"666-high",
"666-icy",
"666-icy-snow",
"666-jungle",
"666-marine",
"666-meadow_2",
"666-meadow_2",
"666-meadow_3",
"666-meadow_3",
"666-meadow",
"666-meadow",
"666-modern",
"666-monsoon",
"666-ocean",
@ -4619,8 +4562,6 @@
"666-poke",
"666-polar",
"666-river",
"666-river_2",
"666-river_2",
"666-sandstorm",
"666-savanna",
"666-sun",
@ -4641,7 +4582,6 @@
"705_3",
"705_3",
"706",
"708",
"709",
"710",
"711",
@ -4826,6 +4766,10 @@
"150b-mega",
"181b-mega",
"212b-mega",
"248b-mega",
"248b-mega",
"257b-mega",
"257b-mega",
"282b-mega",
"3b-mega_2",
"3b-mega_2",
@ -4856,6 +4800,7 @@
"475b-mega_3",
"475b-mega_3",
"6215b",
"6215bf",
"653b",
"654b",
"6549b",
@ -4866,86 +4811,46 @@
"665b",
"665_2b",
"665_2b",
"666b-archipelago_2",
"666b-archipelago_2",
"666b-archipelago_3",
"666b-archipelago_3",
"666b-continental_2",
"666b-continental_2",
"666b-continental_3",
"666b-continental_3",
"666b-elegant_2",
"666b-elegant_2",
"666b-elegant_3",
"666b-elegant_3",
"666b-fancy_2",
"666b-fancy_2",
"666b-fancy_3",
"666b-fancy_3",
"666b-garden_2",
"666b-garden_2",
"666b-garden_3",
"666b-garden_3",
"666b-high",
"666b-high",
"666b-high",
"666b-high",
"666b-icy",
"666b-icy",
"666b-icy",
"666b-icy",
"666b-jungle_2",
"666b-jungle_2",
"666b-jungle_3",
"666b-jungle_3",
"666b-marine_2",
"666b-marine_2",
"666b-marine_3",
"666b-marine_3",
"666b-meadow_2",
"666b-meadow_2",
"666b-meadow_3",
"666b-meadow_3",
"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",
"666b-archipelago",
"666b-archipelago",
"666b-continental",
"666b-continental",
"666b-elegant",
"666b-elegant",
"666b-fancy",
"666b-fancy",
"666b-garden",
"666b-garden",
"666b-high-plains",
"666b-high-plains",
"666b-icy-snow",
"666b-icy-snow",
"666b-jungle",
"666b-jungle",
"666b-marine",
"666b-marine",
"666b-meadow",
"666b-meadow",
"666b-modern",
"666b-modern",
"666b-monsoon",
"666b-monsoon",
"666b-ocean",
"666b-ocean",
"666b-poke-ball",
"666b-poke-ball",
"666b-polar",
"666b-polar",
"666b-river",
"666b-river",
"666b-sandstorm",
"666b-sandstorm",
"666b-savanna",
"666b-savanna",
"666b-sun",
"666b-sun",
"666b-tundra",
"666b-tundra",
"6705b",
"6706_2b",
"6706_2b",
@ -4957,7 +4862,6 @@
"704b",
"705b",
"706b",
"708b",
"709b",
"710b",
"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 @@
{
"textures": [
{
"image": "656.png",
"format": "RGBA8888",
"size": {
"w": 35,
"h": 35
},
"scale": 1,
"frames": [
{ "frames": [
{
"filename": "0001.png",
"frame": { "x": 1, "y": 1, "w": 32, "h": 35 },
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 32,
"h": 35
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 32,
"h": 35
},
"frame": {
"x": 0,
"y": 0,
"w": 32,
"h": 35
}
}
]
"spriteSourceSize": { "x": 0, "y": 0, "w": 32, "h": 35 },
"sourceSize": { "w": 32, "h": 35 },
"duration": 100
}
],
"meta": {
"app": "https://www.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:25355f0b039f39b6231cb75c6f8a0200:2e119e5dd64fab6d996ea751c24a38e0:9c4d208e6c2f857bfb0b23b8eea3326c$"
"app": "https://www.aseprite.org/",
"version": "1.3.12-x64",
"image": "656.png",
"format": "I8",
"size": { "w": 34, "h": 37 },
"scale": "1"
}
}

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 @@
{
"textures": [
{
"image": "674.png",
"format": "RGBA8888",
"size": {
"w": 42,
"h": 42
},
"scale": 1,
"frames": [
{ "frames": [
{
"filename": "0001.png",
"frame": { "x": 0, "y": 0, "w": 29, "h": 42 },
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 28,
"h": 42
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 28,
"h": 42
{
"filename": "0002.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
},
"frame": {
"x": 0,
"y": 0,
"w": 28,
"h": 42
}
}
]
{
"filename": "0003.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": "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 },
"duration": 210
},
{
"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.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:17675dc9d79a224d5cfe26d4ea11594d:afc8db52143597fb62ac44c9a1600a80:b823d10f1c9b4d501296982088ba63d6$"
"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 @@
{
"textures": [
{
"image": "694.png",
"format": "RGBA8888",
"size": {
"w": 41,
"h": 41
},
"scale": 1,
"frames": [
{ "frames": [
{
"filename": "0001.png",
"frame": { "x": 41, "y": 176, "w": 41, "h": 38 },
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 41,
"h": 38
"trimmed": true,
"spriteSourceSize": { "x": 13, "y": 12, "w": 41, "h": 38 },
"sourceSize": { "w": 62, "h": 50 },
"duration": 100
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 41,
"h": 38
{
"filename": "0002.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
},
"frame": {
"x": 0,
"y": 0,
"w": 41,
"h": 38
}
}
]
{
"filename": "0003.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": "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 },
"duration": 100
},
{
"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.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:a121458917a5069ac5fcf0438e46af2b:afcd331d4ef231f539d602827ea66e55:b0990f9650cfe63b836cbed33f0b44d8$"
"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 @@
{
"textures": [
{
"image": "703.png",
"format": "RGBA8888",
"size": {
"w": 38,
"h": 38
},
"scale": 1,
"frames": [
{ "frames": [
{
"filename": "0001.png",
"frame": { "x": 0, "y": 0, "w": 37, "h": 38 },
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 37,
"h": 38
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 0, "w": 37, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 37,
"h": 38
{
"filename": "0002.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
},
"frame": {
"x": 0,
"y": 0,
"w": 37,
"h": 38
}
}
]
{
"filename": "0003.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": "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 },
"duration": 110
},
{
"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.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:5da3bf1b2b82712da609c628fc886d69:7a2dc2f1f3b5fa2ee6b04cdf4c952277:721af8c322ff60159262e9b3017c784d$"
"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 @@
{
"textures": [
{
"image": "714.png",
"format": "RGBA8888",
"size": {
"w": 64,
"h": 64
},
"scale": 1,
"frames": [
{ "frames": [
{
"filename": "0001.png",
"frame": { "x": 1, "y": 1, "w": 64, "h": 57 },
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 64,
"h": 57
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 4, "w": 64, "h": 57 },
"sourceSize": { "w": 66, "h": 70 },
"duration": 50
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 64,
"h": 57
{
"filename": "0002.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
},
"frame": {
"x": 0,
"y": 0,
"w": 64,
"h": 57
}
}
]
{
"filename": "0003.png",
"frame": { "x": 1, "y": 60, "w": 61, "h": 55 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 8, "w": 61, "h": 55 },
"sourceSize": { "w": 66, "h": 70 },
"duration": 50
},
{
"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 },
"duration": 50
},
{
"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.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:acf096b1d2c6d9730a18ff797fb5ae47:ea434d000e9983cb42ecd03220d247c4:1a07d46e710b0568ec824f54fbc4fe6a$"
"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 @@
{
"textures": [
{
"image": "718-10.png",
"format": "RGBA8888",
"size": {
"w": 66,
"h": 66
},
"scale": 1,
"frames": [
{ "frames": [
{
"filename": "0001.png",
"frame": { "x": 0, "y": 0, "w": 57, "h": 67 },
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 56,
"h": 66
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 1, "w": 57, "h": 67 },
"sourceSize": { "w": 61, "h": 69 },
"duration": 100
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 56,
"h": 66
{
"filename": "0002.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
},
"frame": {
"x": 0,
"y": 0,
"w": 56,
"h": 66
}
}
]
{
"filename": "0003.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": "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 },
"duration": 100
},
{
"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.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:a1845dc28b51b657957628d4b4d7af94:87a4c3e6fcac562963f6331abb3d962c:82195cf2a6db620c5643b8162d6e8c5c$"
"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 @@
{
"textures": [
{
"image": "718.png",
"format": "RGBA8888",
"size": {
"w": 88,
"h": 88
},
"scale": 1,
"frames": [
{ "frames": [
{
"filename": "0001.png",
"frame": { "x": 294, "y": 438, "w": 72, "h": 88 },
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 72,
"h": 88
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 3, "w": 72, "h": 88 },
"sourceSize": { "w": 88, "h": 92 },
"duration": 100
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 72,
"h": 88
{
"filename": "0002.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
},
"frame": {
"x": 0,
"y": 0,
"w": 72,
"h": 88
}
}
]
{
"filename": "0003.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": "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 },
"duration": 100
},
{
"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.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:c521b0d088429d6fd0d1d291823b7881:a063fa0268f5006b3587b06e3245db2a:7b4a06b06cbac24b3f39727b0238661b$"
"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 @@
{
"textures": [
{
"image": "719.png",
"format": "RGBA8888",
"size": {
"w": 70,
"h": 70
},
"scale": 1,
"frames": [
{ "frames": [
{
"filename": "0001.png",
"frame": { "x": 0, "y": 0, "w": 41, "h": 70 },
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 41,
"h": 70
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 11, "w": 41, "h": 70 },
"sourceSize": { "w": 63, "h": 81 },
"duration": 100
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 41,
"h": 70
{
"filename": "0002.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
},
"frame": {
"x": 0,
"y": 0,
"w": 41,
"h": 70
}
}
]
{
"filename": "0003.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": "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 },
"duration": 100
},
{
"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.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:2444999ec5c861d795baf2a948bfbf12:226dba2be6e002f00cb5559f02986b41:17a705bb924916761be2495822a53735$"
"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": [
{
"filename": "0001.png",
"frame": { "x": 0, "y": 0, "w": 77, "h": 77 },
"frame": { "x": 0, "y": 0, "w": 77, "h": 65 },
"rotated": false,
"trimmed": false,
"spriteSourceSize": { "x": 0, "y": 0, "w": 77, "h": 77 },
"sourceSize": { "w": 77, "h": 77 },
"spriteSourceSize": { "x": 0, "y": 0, "w": 77, "h": 65 },
"sourceSize": { "w": 77, "h": 65 },
"duration": 100
}
],
"meta": {
"app": "https://www.aseprite.org/",
"version": "1.3.7-x64",
"version": "1.3.9.2-x64",
"format": "I8",
"size": { "w": 77, "h": 77 },
"size": { "w": 77, "h": 65 },
"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 @@
{
"textures": [
{
"image": "674.png",
"format": "RGBA8888",
"size": {
"w": 42,
"h": 42
},
"scale": 1,
"frames": [
{ "frames": [
{
"filename": "0001.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": "0002.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": "0003.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": "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 },
"duration": 210
},
{
"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,
"sourceSize": {
"w": 27,
"h": 42
"spriteSourceSize": { "x": 0, "y": 0, "w": 29, "h": 42 },
"sourceSize": { "w": 29, "h": 42 },
"duration": 140
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 27,
"h": 42
{
"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
},
"frame": {
"x": 0,
"y": 0,
"w": 27,
"h": 42
}
}
]
{
"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.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:1fb0fb4f4e63f6114c7490a9d4d536dc:9830bfa81d721fc889ca0580935f03e3:b823d10f1c9b4d501296982088ba63d6$"
"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 @@
{
"textures": [
{
"image": "694.png",
"format": "RGBA8888",
"size": {
"w": 44,
"h": 44
},
"scale": 1,
"frames": [
{ "frames": [
{
"filename": "0001.png",
"frame": { "x": 102, "y": 163, "w": 44, "h": 37 },
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 44,
"h": 37
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 11, "w": 44, "h": 37 },
"sourceSize": { "w": 61, "h": 48 },
"duration": 100
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 44,
"h": 37
{
"filename": "0002.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
},
"frame": {
"x": 0,
"y": 0,
"w": 44,
"h": 37
}
}
]
{
"filename": "0003.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": "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 },
"duration": 100
},
{
"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.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:b35211eb8a79aa76e67039dd27e0e5a6:1905f4c2a0828a1c7c274f51d78b7e21:b0990f9650cfe63b836cbed33f0b44d8$"
"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 @@
{
"textures": [
{
"image": "703.png",
"format": "RGBA8888",
"size": {
"w": 38,
"h": 38
},
"scale": 1,
"frames": [
{ "frames": [
{
"filename": "0001.png",
"frame": { "x": 36, "y": 0, "w": 37, "h": 38 },
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 37,
"h": 38
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 0, "w": 37, "h": 38 },
"sourceSize": { "w": 40, "h": 49 },
"duration": 110
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 37,
"h": 38
{
"filename": "0002.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
},
"frame": {
"x": 0,
"y": 0,
"w": 37,
"h": 38
}
}
]
{
"filename": "0003.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": "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 },
"duration": 110
},
{
"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.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:32e6c2d8721f80aa2afd20f97c5e4cf1:2c61f7a426cd2d739241c87d6ab5ea99:721af8c322ff60159262e9b3017c784d$"
"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 @@
{
"textures": [
{
"image": "714.png",
"format": "RGBA8888",
"size": {
"w": 63,
"h": 63
},
"scale": 1,
"frames": [
{ "frames": [
{
"filename": "0001.png",
"frame": { "x": 1, "y": 61, "w": 63, "h": 57 },
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 63,
"h": 57
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 4, "w": 63, "h": 57 },
"sourceSize": { "w": 68, "h": 68 },
"duration": 50
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 63,
"h": 57
{
"filename": "0002.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
},
"frame": {
"x": 0,
"y": 0,
"w": 63,
"h": 57
}
}
]
{
"filename": "0003.png",
"frame": { "x": 198, "y": 1, "w": 64, "h": 57 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 4, "y": 8, "w": 64, "h": 57 },
"sourceSize": { "w": 68, "h": 68 },
"duration": 50
},
{
"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 },
"duration": 50
},
{
"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.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:8ffbc9c4153869b318391be0e5f3743c:6e53f3ebf638d13b0d9b325c9e1c6198:1a07d46e710b0568ec824f54fbc4fe6a$"
"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 @@
{
"textures": [
{
"image": "718-10.png",
"format": "RGBA8888",
"size": {
"w": 65,
"h": 65
},
"scale": 1,
"frames": [
{ "frames": [
{
"filename": "0001.png",
"frame": { "x": 120, "y": 63, "w": 59, "h": 65 },
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 59,
"h": 65
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 2, "w": 59, "h": 65 },
"sourceSize": { "w": 64, "h": 67 },
"duration": 100
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 59,
"h": 65
{
"filename": "0002.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
},
"frame": {
"x": 0,
"y": 0,
"w": 59,
"h": 65
}
}
]
{
"filename": "0003.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": "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 },
"duration": 100
},
{
"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.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:e9f4b2c69d996349a8e35598e7ddec9c:06067c7cf2cde81fd4d1f42fe319185e:82195cf2a6db620c5643b8162d6e8c5c$"
"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

View File

@ -1,41 +1,803 @@
{
"textures": [
{
"image": "718.png",
"format": "RGBA8888",
"size": {
"w": 88,
"h": 88
},
"scale": 1,
"frames": [
{ "frames": [
{
"filename": "0001.png",
"frame": { "x": 224, "y": 443, "w": 72, "h": 88 },
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 72,
"h": 88
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 2, "w": 72, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 72,
"h": 88
{
"filename": "0002.png",
"frame": { "x": 148, "y": 445, "w": 71, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 2, "w": 71, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
"frame": {
"x": 0,
"y": 0,
"w": 72,
"h": 88
}
}
]
{
"filename": "0003.png",
"frame": { "x": 445, "y": 445, "w": 70, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 2, "w": 70, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0004.png",
"frame": { "x": 72, "y": 446, "w": 70, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 2, "w": 70, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0005.png",
"frame": { "x": 373, "y": 360, "w": 72, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 2, "w": 72, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0006.png",
"frame": { "x": 226, "y": 355, "w": 74, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 2, "w": 74, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0007.png",
"frame": { "x": 0, "y": 184, "w": 75, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 2, "w": 75, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0008.png",
"frame": { "x": 150, "y": 269, "w": 76, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 2, "w": 76, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0009.png",
"frame": { "x": 304, "y": 269, "w": 76, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 11, "y": 2, "w": 76, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0010.png",
"frame": { "x": 459, "y": 269, "w": 76, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 11, "y": 2, "w": 76, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0011.png",
"frame": { "x": 308, "y": 180, "w": 76, "h": 89 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 2, "w": 76, "h": 89 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0012.png",
"frame": { "x": 462, "y": 180, "w": 76, "h": 89 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 2, "w": 76, "h": 89 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0013.png",
"frame": { "x": 386, "y": 91, "w": 76, "h": 90 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 2, "w": 76, "h": 90 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0014.png",
"frame": { "x": 75, "y": 270, "w": 75, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 2, "w": 75, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0015.png",
"frame": { "x": 150, "y": 357, "w": 74, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 2, "w": 74, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0016.png",
"frame": { "x": 75, "y": 358, "w": 73, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 2, "w": 73, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0017.png",
"frame": { "x": 224, "y": 443, "w": 72, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 2, "w": 72, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0018.png",
"frame": { "x": 148, "y": 445, "w": 71, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 2, "w": 71, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0019.png",
"frame": { "x": 445, "y": 445, "w": 70, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 2, "w": 70, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0020.png",
"frame": { "x": 72, "y": 446, "w": 70, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 2, "w": 70, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0021.png",
"frame": { "x": 373, "y": 360, "w": 72, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 2, "w": 72, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0022.png",
"frame": { "x": 226, "y": 355, "w": 74, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 2, "w": 74, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0023.png",
"frame": { "x": 0, "y": 184, "w": 75, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 2, "w": 75, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0024.png",
"frame": { "x": 150, "y": 269, "w": 76, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 2, "w": 76, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0025.png",
"frame": { "x": 304, "y": 269, "w": 76, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 11, "y": 2, "w": 76, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0026.png",
"frame": { "x": 459, "y": 269, "w": 76, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 11, "y": 2, "w": 76, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0027.png",
"frame": { "x": 308, "y": 180, "w": 76, "h": 89 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 2, "w": 76, "h": 89 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0028.png",
"frame": { "x": 462, "y": 180, "w": 76, "h": 89 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 2, "w": 76, "h": 89 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0029.png",
"frame": { "x": 386, "y": 91, "w": 76, "h": 90 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 2, "w": 76, "h": 90 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0030.png",
"frame": { "x": 75, "y": 270, "w": 75, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 2, "w": 75, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0031.png",
"frame": { "x": 150, "y": 357, "w": 74, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 2, "w": 74, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0032.png",
"frame": { "x": 75, "y": 358, "w": 73, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 2, "w": 73, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0033.png",
"frame": { "x": 224, "y": 443, "w": 72, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 2, "w": 72, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0034.png",
"frame": { "x": 148, "y": 445, "w": 71, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 2, "w": 71, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0035.png",
"frame": { "x": 445, "y": 445, "w": 70, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 2, "w": 70, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0036.png",
"frame": { "x": 72, "y": 446, "w": 70, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 2, "w": 70, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0037.png",
"frame": { "x": 373, "y": 360, "w": 72, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 2, "w": 72, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0038.png",
"frame": { "x": 226, "y": 355, "w": 74, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 2, "w": 74, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0039.png",
"frame": { "x": 0, "y": 184, "w": 75, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 2, "w": 75, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0040.png",
"frame": { "x": 150, "y": 269, "w": 76, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 2, "w": 76, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0041.png",
"frame": { "x": 304, "y": 269, "w": 76, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 11, "y": 2, "w": 76, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0042.png",
"frame": { "x": 459, "y": 269, "w": 76, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 11, "y": 2, "w": 76, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0043.png",
"frame": { "x": 308, "y": 180, "w": 76, "h": 89 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 2, "w": 76, "h": 89 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0044.png",
"frame": { "x": 462, "y": 180, "w": 76, "h": 89 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 2, "w": 76, "h": 89 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0045.png",
"frame": { "x": 386, "y": 91, "w": 76, "h": 90 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 2, "w": 76, "h": 90 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0046.png",
"frame": { "x": 75, "y": 270, "w": 75, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 2, "w": 75, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0047.png",
"frame": { "x": 150, "y": 357, "w": 74, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 2, "w": 74, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0048.png",
"frame": { "x": 75, "y": 358, "w": 73, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 2, "w": 73, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0049.png",
"frame": { "x": 224, "y": 443, "w": 72, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 2, "w": 72, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0050.png",
"frame": { "x": 148, "y": 445, "w": 71, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 2, "w": 71, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0051.png",
"frame": { "x": 445, "y": 445, "w": 70, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 2, "w": 70, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0052.png",
"frame": { "x": 72, "y": 446, "w": 70, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 2, "w": 70, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0053.png",
"frame": { "x": 373, "y": 360, "w": 72, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 2, "w": 72, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0054.png",
"frame": { "x": 226, "y": 355, "w": 74, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 2, "w": 74, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0055.png",
"frame": { "x": 0, "y": 184, "w": 75, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 2, "w": 75, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0056.png",
"frame": { "x": 150, "y": 269, "w": 76, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 2, "w": 76, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0057.png",
"frame": { "x": 304, "y": 269, "w": 76, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 11, "y": 2, "w": 76, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0058.png",
"frame": { "x": 459, "y": 269, "w": 76, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 11, "y": 2, "w": 76, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0059.png",
"frame": { "x": 308, "y": 180, "w": 76, "h": 89 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 10, "y": 2, "w": 76, "h": 89 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0060.png",
"frame": { "x": 462, "y": 180, "w": 76, "h": 89 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 9, "y": 2, "w": 76, "h": 89 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0061.png",
"frame": { "x": 386, "y": 91, "w": 76, "h": 90 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 2, "w": 76, "h": 90 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0062.png",
"frame": { "x": 75, "y": 270, "w": 75, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 2, "w": 75, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0063.png",
"frame": { "x": 150, "y": 357, "w": 74, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 2, "w": 74, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0064.png",
"frame": { "x": 75, "y": 358, "w": 73, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 2, "w": 73, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0065.png",
"frame": { "x": 224, "y": 443, "w": 72, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 2, "w": 72, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0066.png",
"frame": { "x": 0, "y": 359, "w": 72, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 2, "w": 72, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0067.png",
"frame": { "x": 300, "y": 357, "w": 73, "h": 89 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 2, "w": 73, "h": 89 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0068.png",
"frame": { "x": 380, "y": 271, "w": 74, "h": 89 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 3, "w": 74, "h": 89 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0069.png",
"frame": { "x": 384, "y": 181, "w": 75, "h": 90 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 2, "w": 75, "h": 90 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0070.png",
"frame": { "x": 155, "y": 92, "w": 76, "h": 90 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 2, "w": 76, "h": 90 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0071.png",
"frame": { "x": 309, "y": 91, "w": 77, "h": 89 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 3, "w": 77, "h": 89 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0072.png",
"frame": { "x": 227, "y": 268, "w": 77, "h": 87 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 3, "w": 77, "h": 87 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0073.png",
"frame": { "x": 150, "y": 182, "w": 77, "h": 87 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 8, "y": 3, "w": 77, "h": 87 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0074.png",
"frame": { "x": 0, "y": 272, "w": 75, "h": 87 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 7, "y": 3, "w": 75, "h": 87 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0075.png",
"frame": { "x": 310, "y": 0, "w": 77, "h": 91 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 4, "y": 0, "w": 77, "h": 91 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0076.png",
"frame": { "x": 387, "y": 0, "w": 77, "h": 91 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 2, "y": 1, "w": 77, "h": 91 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0077.png",
"frame": { "x": 155, "y": 0, "w": 77, "h": 92 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 0, "w": 77, "h": 92 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0078.png",
"frame": { "x": 77, "y": 0, "w": 78, "h": 91 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 2, "w": 78, "h": 91 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0079.png",
"frame": { "x": 0, "y": 0, "w": 77, "h": 93 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 0, "w": 77, "h": 93 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0080.png",
"frame": { "x": 231, "y": 180, "w": 77, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 2, "w": 77, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0081.png",
"frame": { "x": 232, "y": 0, "w": 78, "h": 90 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 0, "w": 78, "h": 90 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0082.png",
"frame": { "x": 77, "y": 91, "w": 78, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 2, "w": 78, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0083.png",
"frame": { "x": 464, "y": 0, "w": 77, "h": 90 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 1, "w": 77, "h": 90 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0084.png",
"frame": { "x": 232, "y": 90, "w": 77, "h": 90 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 0, "y": 2, "w": 77, "h": 90 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0085.png",
"frame": { "x": 464, "y": 90, "w": 77, "h": 90 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 1, "y": 2, "w": 77, "h": 90 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0086.png",
"frame": { "x": 0, "y": 93, "w": 75, "h": 91 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 3, "y": 2, "w": 75, "h": 91 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0087.png",
"frame": { "x": 75, "y": 179, "w": 75, "h": 91 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 4, "y": 2, "w": 75, "h": 91 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
},
{
"filename": "0088.png",
"frame": { "x": 454, "y": 357, "w": 73, "h": 88 },
"rotated": false,
"trimmed": true,
"spriteSourceSize": { "x": 6, "y": 2, "w": 73, "h": 88 },
"sourceSize": { "w": 87, "h": 93 },
"duration": 100
}
],
"meta": {
"app": "https://www.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:3aa5b45708c79b806af72f343f73edbc:0b68b84d5671a020b28cd5a19650bf44:7b4a06b06cbac24b3f39727b0238661b$"
"app": "https://www.aseprite.org/",
"version": "1.3.12-x64",
"image": "718.png",
"format": "I8",
"size": { "w": 541, "h": 534 },
"scale": "1"
}
}

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