Merge branch 'beta' into splashtexts
@ -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
|
||||
// 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)$',
|
||||
'./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
|
||||
|
1
.gitattributes
vendored
@ -1,2 +1,3 @@
|
||||
# Auto detect text files and perform LF normalization
|
||||
* text=auto
|
||||
* -crlf
|
||||
|
17
.github/CODEOWNERS
vendored
@ -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
|
1
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
@ -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
|
||||
|
1
.github/ISSUE_TEMPLATE/feature_request.yml
vendored
@ -1,6 +1,7 @@
|
||||
name: Feature Request
|
||||
description: Suggest an idea for this project
|
||||
title: "[Feature] "
|
||||
type: 'feature'
|
||||
labels: ["Enhancement", "Triage"]
|
||||
body:
|
||||
- type: markdown
|
||||
|
@ -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
@ -41,3 +41,7 @@ coverage
|
||||
|
||||
/dependency-graph.svg
|
||||
/.vs
|
||||
|
||||
|
||||
# Script outputs
|
||||
./*.csv
|
@ -364,11 +364,13 @@ In addition to the lists below, please check [the PokéRogue wiki](https://wiki.
|
||||
- Opaquer
|
||||
- OrangeRed
|
||||
- Sam aka Flashfyre (initial developer, started PokéRogue)
|
||||
- SirzBenjie
|
||||
- sirzento
|
||||
- SN34KZ
|
||||
- Swain aka torranx
|
||||
- Temp aka Tempo-anon
|
||||
- Walker
|
||||
- Wlowscha (aka Curbio)
|
||||
- Xavion
|
||||
|
||||
## Bug/Issue Managers
|
||||
|
13
README.md
@ -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
@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* This script creates a test boilerplate file in the appropriate
|
||||
* This script creates a test boilerplate file in the appropriate
|
||||
* directory based on the type selected.
|
||||
* @example npm run create-test
|
||||
*/
|
||||
@ -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,11 +75,11 @@ 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;
|
||||
@ -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";
|
||||
|
||||
|
@ -10,4 +10,4 @@ for await (const chunk of process.stdin) {
|
||||
const file = Buffer.concat(inputFile).toString("utf-8");
|
||||
|
||||
const svg = graphviz.dot(file, "svg");
|
||||
process.stdout.write(svg);
|
||||
process.stdout.write(svg);
|
||||
|
109
eslint.config.js
@ -1,70 +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 [
|
||||
{
|
||||
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
|
||||
},
|
||||
plugins: {
|
||||
"import-x": importX,
|
||||
'@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
|
||||
}
|
||||
export default [
|
||||
{
|
||||
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,
|
||||
},
|
||||
{
|
||||
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/
|
||||
}
|
||||
}
|
||||
]
|
||||
plugins: {
|
||||
"import-x": importX,
|
||||
"@stylistic/ts": stylisticTs,
|
||||
"@typescript-eslint": tseslint,
|
||||
},
|
||||
rules: {
|
||||
"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)
|
||||
"no-extra-semi": ["error"], // Disallows unnecessary semicolons for TypeScript-specific syntax
|
||||
"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/
|
||||
},
|
||||
},
|
||||
];
|
||||
|
190
index.css
@ -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,32 +161,69 @@ 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'], [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;
|
||||
#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;
|
||||
}
|
||||
|
||||
/* Configuration toolbar */
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -353,55 +409,55 @@ a {
|
||||
|
||||
/* Firefox old*/
|
||||
@-moz-keyframes blink {
|
||||
0% {
|
||||
opacity:1;
|
||||
}
|
||||
50% {
|
||||
opacity:0;
|
||||
}
|
||||
100% {
|
||||
opacity:1;
|
||||
}
|
||||
0% {
|
||||
opacity: 1;
|
||||
}
|
||||
50% {
|
||||
opacity: 0;
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes blink {
|
||||
0% {
|
||||
opacity:1;
|
||||
}
|
||||
50% {
|
||||
opacity:0;
|
||||
}
|
||||
100% {
|
||||
opacity:1;
|
||||
}
|
||||
0% {
|
||||
opacity: 1;
|
||||
}
|
||||
50% {
|
||||
opacity: 0;
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
/* IE */
|
||||
@-ms-keyframes blink {
|
||||
0% {
|
||||
opacity:1;
|
||||
}
|
||||
50% {
|
||||
opacity:0;
|
||||
}
|
||||
100% {
|
||||
opacity:1;
|
||||
}
|
||||
0% {
|
||||
opacity: 1;
|
||||
}
|
||||
50% {
|
||||
opacity: 0;
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
/* Opera and prob css3 final iteration */
|
||||
@keyframes blink {
|
||||
0% {
|
||||
opacity:1;
|
||||
}
|
||||
50% {
|
||||
opacity:0;
|
||||
}
|
||||
100% {
|
||||
opacity:1;
|
||||
}
|
||||
0% {
|
||||
opacity: 1;
|
||||
}
|
||||
50% {
|
||||
opacity: 0;
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
.blink-image {
|
||||
-moz-animation: blink normal 4s infinite ease-in-out; /* Firefox */
|
||||
-webkit-animation: blink normal 4s infinite ease-in-out; /* Webkit */
|
||||
-ms-animation: blink normal 4s infinite ease-in-out; /* IE */
|
||||
animation: blink normal 4s infinite ease-in-out; /* Opera and prob css3 final iteration */
|
||||
-moz-animation: blink normal 4s infinite ease-in-out; /* Firefox */
|
||||
-webkit-animation: blink normal 4s infinite ease-in-out; /* Webkit */
|
||||
-ms-animation: blink normal 4s infinite ease-in-out; /* IE */
|
||||
animation: blink normal 4s infinite ease-in-out; /* Opera and prob css3 final iteration */
|
||||
}
|
||||
|
@ -133,7 +133,7 @@
|
||||
<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">
|
||||
|
@ -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:
|
||||
|
14189
package-lock.json
generated
135
package.json
@ -1,68 +1,71 @@
|
||||
{
|
||||
"name": "pokemon-rogue-battle",
|
||||
"private": true,
|
||||
"version": "1.7.0",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"start": "vite",
|
||||
"start:dev": "vite --mode development",
|
||||
"build": "vite build",
|
||||
"build:beta": "vite build --mode beta",
|
||||
"preview": "vite preview",
|
||||
"test": "vitest run --project pre && vitest run --project main",
|
||||
"test:cov": "vitest run --project pre && vitest run --project main --coverage",
|
||||
"test:watch": "vitest run --project pre && vitest watch --project main --coverage",
|
||||
"test:silent": "vitest run --project pre && vitest run --project main --silent",
|
||||
"typecheck": "tsc --noEmit",
|
||||
"eslint": "eslint --fix .",
|
||||
"eslint-ci": "eslint .",
|
||||
"docs": "typedoc",
|
||||
"depcruise": "depcruise src",
|
||||
"depcruise:graph": "depcruise src --output-type dot | node dependency-graph.js > dependency-graph.svg",
|
||||
"create-test": "node ./create-test-boilerplate.js",
|
||||
"postinstall": "npx lefthook install && npx lefthook run post-merge",
|
||||
"update-version:patch": "npm version patch --force --no-git-tag-version",
|
||||
"update-version:minor": "npm version minor --force --no-git-tag-version",
|
||||
"update-locales:remote": "git submodule update --progress --init --recursive --force --remote"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@eslint/js": "^9.3.0",
|
||||
"@hpcc-js/wasm": "^2.18.0",
|
||||
"@stylistic/eslint-plugin-ts": "^2.6.0-beta.0",
|
||||
"@types/jsdom": "^21.1.7",
|
||||
"@types/node": "^20.12.13",
|
||||
"@typescript-eslint/eslint-plugin": "^8.0.0-alpha.54",
|
||||
"@typescript-eslint/parser": "^8.0.0-alpha.54",
|
||||
"@vitest/coverage-istanbul": "^2.1.9",
|
||||
"dependency-cruiser": "^16.3.10",
|
||||
"eslint": "^9.7.0",
|
||||
"eslint-plugin-import-x": "^4.2.1",
|
||||
"inquirer": "^11.0.2",
|
||||
"jsdom": "^24.0.0",
|
||||
"lefthook": "^1.6.12",
|
||||
"msw": "^2.4.9",
|
||||
"phaser3spectorjs": "^0.0.8",
|
||||
"typedoc": "^0.26.4",
|
||||
"typescript": "^5.5.3",
|
||||
"typescript-eslint": "^8.0.0-alpha.54",
|
||||
"vite": "^5.4.14",
|
||||
"vite-tsconfig-paths": "^4.3.2",
|
||||
"vitest": "^2.1.9",
|
||||
"vitest-canvas-mock": "^0.3.3"
|
||||
},
|
||||
"dependencies": {
|
||||
"@material/material-color-utilities": "^0.2.7",
|
||||
"crypto-js": "^4.2.0",
|
||||
"i18next": "^23.11.1",
|
||||
"i18next-browser-languagedetector": "^7.2.1",
|
||||
"i18next-http-backend": "^2.6.1",
|
||||
"i18next-korean-postposition-processor": "^1.0.0",
|
||||
"json-stable-stringify": "^1.1.0",
|
||||
"jszip": "^3.10.1",
|
||||
"phaser": "^3.70.0",
|
||||
"phaser3-rex-plugins": "^1.1.84"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=20.0.0"
|
||||
}
|
||||
"name": "pokemon-rogue-battle",
|
||||
"private": true,
|
||||
"version": "1.7.7",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"start": "vite",
|
||||
"start:dev": "vite --mode development",
|
||||
"build": "vite build",
|
||||
"build:beta": "vite build --mode beta",
|
||||
"preview": "vite preview",
|
||||
"test": "vitest run --project pre && vitest run --project main",
|
||||
"test:cov": "vitest run --project pre && vitest run --project main --coverage",
|
||||
"test:watch": "vitest run --project pre && vitest watch --project main --coverage",
|
||||
"test:silent": "vitest run --project pre && vitest run --project main --silent",
|
||||
"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",
|
||||
"create-test": "node ./create-test-boilerplate.js",
|
||||
"postinstall": "npx lefthook install && npx lefthook run post-merge",
|
||||
"update-version:patch": "npm version patch --force --no-git-tag-version",
|
||||
"update-version:minor": "npm version minor --force --no-git-tag-version",
|
||||
"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",
|
||||
"@types/jsdom": "^21.1.7",
|
||||
"@types/node": "^20.12.13",
|
||||
"@typescript-eslint/eslint-plugin": "^8.0.0-alpha.54",
|
||||
"@typescript-eslint/parser": "^8.0.0-alpha.54",
|
||||
"@vitest/coverage-istanbul": "^2.1.9",
|
||||
"dependency-cruiser": "^16.3.10",
|
||||
"eslint": "^9.7.0",
|
||||
"eslint-plugin-import-x": "^4.2.1",
|
||||
"inquirer": "^11.0.2",
|
||||
"jsdom": "^24.0.0",
|
||||
"lefthook": "^1.6.12",
|
||||
"msw": "^2.4.9",
|
||||
"phaser3spectorjs": "^0.0.8",
|
||||
"typedoc": "^0.26.4",
|
||||
"typescript": "^5.5.3",
|
||||
"typescript-eslint": "^8.0.0-alpha.54",
|
||||
"vite": "^5.4.14",
|
||||
"vite-tsconfig-paths": "^4.3.2",
|
||||
"vitest": "^2.1.9",
|
||||
"vitest-canvas-mock": "^0.3.3"
|
||||
},
|
||||
"dependencies": {
|
||||
"@material/material-color-utilities": "^0.2.7",
|
||||
"crypto-js": "^4.2.0",
|
||||
"i18next": "^23.11.1",
|
||||
"i18next-browser-languagedetector": "^7.2.1",
|
||||
"i18next-http-backend": "^2.6.1",
|
||||
"i18next-korean-postposition-processor": "^1.0.0",
|
||||
"json-stable-stringify": "^1.1.0",
|
||||
"jszip": "^3.10.1",
|
||||
"phaser": "^3.70.0",
|
||||
"phaser3-rex-plugins": "^1.1.84"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=20.0.0"
|
||||
}
|
||||
}
|
||||
|
@ -13,10 +13,10 @@
|
||||
"1005",
|
||||
"1006",
|
||||
"1006",
|
||||
"1007-apex",
|
||||
"1007-apex",
|
||||
"1008-ultimate",
|
||||
"1008-ultimate",
|
||||
"1007-apex-build-Disabled",
|
||||
"1007-apex-build-Disabled",
|
||||
"1008-ultimate-mode-Disabled",
|
||||
"1008-ultimate-mode-Disabled",
|
||||
"115-mega",
|
||||
"115-mega",
|
||||
"127-mega",
|
||||
@ -183,9 +183,11 @@
|
||||
"487-origin",
|
||||
"531-mega",
|
||||
"531-mega",
|
||||
"6-mega",
|
||||
"6-mega",
|
||||
"569-gigantamax",
|
||||
"569-gigantamax",
|
||||
"6-mega-x",
|
||||
"6-mega-x",
|
||||
"6-mega-y",
|
||||
"6-mega-y",
|
||||
"6058",
|
||||
"6058",
|
||||
@ -261,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",
|
||||
@ -277,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",
|
||||
@ -339,7 +341,6 @@
|
||||
"6724",
|
||||
"673",
|
||||
"673",
|
||||
|
||||
"675",
|
||||
"675",
|
||||
"676",
|
||||
@ -382,14 +383,12 @@
|
||||
"692",
|
||||
"693",
|
||||
"693",
|
||||
|
||||
"695",
|
||||
"695",
|
||||
"696",
|
||||
"696",
|
||||
"697",
|
||||
"697",
|
||||
|
||||
"699",
|
||||
"699",
|
||||
"700",
|
||||
@ -398,7 +397,6 @@
|
||||
"701",
|
||||
"702",
|
||||
"702",
|
||||
|
||||
"704",
|
||||
"704",
|
||||
"705",
|
||||
@ -697,6 +695,8 @@
|
||||
"814",
|
||||
"815",
|
||||
"815",
|
||||
"815-gigantamax",
|
||||
"815-gigantamax",
|
||||
"816",
|
||||
"816",
|
||||
"817",
|
||||
@ -747,6 +747,8 @@
|
||||
"838",
|
||||
"839",
|
||||
"839",
|
||||
"839-gigantamax",
|
||||
"839-gigantamax",
|
||||
"840",
|
||||
"840",
|
||||
"841",
|
||||
@ -823,8 +825,8 @@
|
||||
"873",
|
||||
"874",
|
||||
"874",
|
||||
"875-no",
|
||||
"875-no",
|
||||
"875-no-ice",
|
||||
"875-no-ice",
|
||||
"875",
|
||||
"875",
|
||||
"876-female",
|
||||
@ -961,26 +963,26 @@
|
||||
"929",
|
||||
"930",
|
||||
"930",
|
||||
"931-blue",
|
||||
"931-blue",
|
||||
"931-green",
|
||||
"931-green",
|
||||
"931-white",
|
||||
"931-white",
|
||||
"931-yellow",
|
||||
"931-yellow",
|
||||
"931-blue-plumage-Disabled",
|
||||
"931-blue-plumage-Disabled",
|
||||
"931-green-plumage-Disabled",
|
||||
"931-green-plumage-Disabled",
|
||||
"931-white-plumage-Disabled",
|
||||
"931-white-plumage-Disabled",
|
||||
"931-yellow-plumage-Disabled",
|
||||
"931-yellow-plumage-Disabled",
|
||||
"932",
|
||||
"932",
|
||||
"933",
|
||||
"933",
|
||||
"934",
|
||||
"934",
|
||||
"935",
|
||||
"935",
|
||||
"936",
|
||||
"936",
|
||||
"937",
|
||||
"937",
|
||||
"935-Disabled",
|
||||
"935-Disabled",
|
||||
"936-Disabled",
|
||||
"936-Disabled",
|
||||
"937-Disabled",
|
||||
"937-Disabled",
|
||||
"938",
|
||||
"938",
|
||||
"939",
|
||||
@ -1071,8 +1073,8 @@
|
||||
"978-droopy",
|
||||
"978-stretchy",
|
||||
"978-stretchy",
|
||||
"979",
|
||||
"979",
|
||||
"979-Disabled",
|
||||
"979-Disabled",
|
||||
"980",
|
||||
"980",
|
||||
"981",
|
||||
@ -1131,10 +1133,10 @@
|
||||
"1005b",
|
||||
"1006b",
|
||||
"1006b",
|
||||
"1007b-apex",
|
||||
"1007b-apex",
|
||||
"1008b-ultimate",
|
||||
"1008b-ultimate",
|
||||
"1007b-apex-build-Disabled",
|
||||
"1007b-apex-build-Disabled",
|
||||
"1008b-ultimate-mode-Disabled",
|
||||
"1008b-ultimate-mode-Disabled",
|
||||
"115b-mega",
|
||||
"115b-mega",
|
||||
"127b-mega",
|
||||
@ -1301,9 +1303,11 @@
|
||||
"487b-origin",
|
||||
"531b-mega",
|
||||
"531b-mega",
|
||||
"6b-mega",
|
||||
"6b-mega",
|
||||
"569b-gigantamax",
|
||||
"569b-gigantamax",
|
||||
"6b-mega-x",
|
||||
"6b-mega-x",
|
||||
"6b-mega-y",
|
||||
"6b-mega-y",
|
||||
"6058b",
|
||||
"6058b",
|
||||
@ -1379,10 +1383,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",
|
||||
@ -1395,8 +1399,8 @@
|
||||
"666b-monsoon",
|
||||
"666b-ocean",
|
||||
"666b-ocean",
|
||||
"666b-poke",
|
||||
"666b-poke",
|
||||
"666b-poke-ball",
|
||||
"666b-poke-ball",
|
||||
"666b-polar",
|
||||
"666b-polar",
|
||||
"666b-river",
|
||||
@ -1457,7 +1461,6 @@
|
||||
"6724b",
|
||||
"673b",
|
||||
"673b",
|
||||
|
||||
"675b",
|
||||
"675b",
|
||||
"676b",
|
||||
@ -1500,14 +1503,12 @@
|
||||
"692b",
|
||||
"693b",
|
||||
"693b",
|
||||
|
||||
"695b",
|
||||
"695b",
|
||||
"696b",
|
||||
"696b",
|
||||
"697b",
|
||||
"697b",
|
||||
|
||||
"699b",
|
||||
"699b",
|
||||
"700b",
|
||||
@ -1516,7 +1517,6 @@
|
||||
"701b",
|
||||
"702b",
|
||||
"702b",
|
||||
|
||||
"704b",
|
||||
"704b",
|
||||
"705b",
|
||||
@ -1815,6 +1815,8 @@
|
||||
"814b",
|
||||
"815b",
|
||||
"815b",
|
||||
"815b-gigantamax",
|
||||
"815b-gigantamax",
|
||||
"816b",
|
||||
"816b",
|
||||
"817b",
|
||||
@ -1865,6 +1867,8 @@
|
||||
"838b",
|
||||
"839b",
|
||||
"839b",
|
||||
"839b-gigantamax",
|
||||
"839b-gigantamax",
|
||||
"840b",
|
||||
"840b",
|
||||
"841b",
|
||||
@ -1941,8 +1945,8 @@
|
||||
"873b",
|
||||
"874b",
|
||||
"874b",
|
||||
"875b-no",
|
||||
"875b-no",
|
||||
"875b-no-ice",
|
||||
"875b-no-ice",
|
||||
"875b",
|
||||
"875b",
|
||||
"876b-female",
|
||||
@ -2081,26 +2085,26 @@
|
||||
"929b",
|
||||
"930b",
|
||||
"930b",
|
||||
"931b-blue",
|
||||
"931b-blue",
|
||||
"931b-green",
|
||||
"931b-green",
|
||||
"931b-white",
|
||||
"931b-white",
|
||||
"931b-yellow",
|
||||
"931b-yellow",
|
||||
"931b-blue-plumage-Disabled",
|
||||
"931b-blue-plumage-Disabled",
|
||||
"931b-green-plumage-Disabled",
|
||||
"931b-green-plumage-Disabled",
|
||||
"931b-white-plumage-Disabled",
|
||||
"931b-white-plumage-Disabled",
|
||||
"931b-yellow-plumage-Disabled",
|
||||
"931b-yellow-plumage-Disabled",
|
||||
"932b",
|
||||
"932b",
|
||||
"933b",
|
||||
"933b",
|
||||
"934b",
|
||||
"934b",
|
||||
"935b",
|
||||
"935b",
|
||||
"936b",
|
||||
"936b",
|
||||
"937b",
|
||||
"937b",
|
||||
"935b-Disabled",
|
||||
"935b-Disabled",
|
||||
"936b-Disabled",
|
||||
"936b-Disabled",
|
||||
"937b-Disabled",
|
||||
"937b-Disabled",
|
||||
"938b",
|
||||
"938b",
|
||||
"939b",
|
||||
@ -2191,8 +2195,6 @@
|
||||
"978b-droopy",
|
||||
"978b-stretchy",
|
||||
"978b-stretchy",
|
||||
"979b",
|
||||
"979b",
|
||||
"980b",
|
||||
"980b",
|
||||
"981b",
|
||||
@ -2251,10 +2253,10 @@
|
||||
"1005sb",
|
||||
"1006sb",
|
||||
"1006sb",
|
||||
"1007sb-apex",
|
||||
"1007sb-apex",
|
||||
"1008sb-ultimate",
|
||||
"1008sb-ultimate",
|
||||
"1007sb-apex-build-Disabled",
|
||||
"1007sb-apex-build-Disabled",
|
||||
"1008sb-ultimate-mode-Disabled",
|
||||
"1008sb-ultimate-mode-Disabled",
|
||||
"115sb-mega",
|
||||
"115sb-mega",
|
||||
"127sb-mega",
|
||||
@ -2421,6 +2423,8 @@
|
||||
"487sb-origin",
|
||||
"531sb-mega",
|
||||
"531sb-mega",
|
||||
"569sb-gigantamax",
|
||||
"569sb-gigantamax",
|
||||
"6sb-mega",
|
||||
"6sb-mega",
|
||||
"6sb-mega-x",
|
||||
@ -2499,10 +2503,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",
|
||||
@ -2515,8 +2519,8 @@
|
||||
"666sb-monsoon",
|
||||
"666sb-ocean",
|
||||
"666sb-ocean",
|
||||
"666sb-poke",
|
||||
"666sb-poke",
|
||||
"666sb-poke-ball",
|
||||
"666sb-poke-ball",
|
||||
"666sb-polar",
|
||||
"666sb-polar",
|
||||
"666sb-river",
|
||||
@ -2577,7 +2581,6 @@
|
||||
"6724sb",
|
||||
"673sb",
|
||||
"673sb",
|
||||
|
||||
"675sb",
|
||||
"675sb",
|
||||
"676sb",
|
||||
@ -2620,14 +2623,12 @@
|
||||
"692sb",
|
||||
"693sb",
|
||||
"693sb",
|
||||
|
||||
"695sb",
|
||||
"695sb",
|
||||
"696sb",
|
||||
"696sb",
|
||||
"697sb",
|
||||
"697sb",
|
||||
|
||||
"699sb",
|
||||
"699sb",
|
||||
"700sb",
|
||||
@ -2636,7 +2637,6 @@
|
||||
"701sb",
|
||||
"702sb",
|
||||
"702sb",
|
||||
|
||||
"704sb",
|
||||
"704sb",
|
||||
"705sb",
|
||||
@ -2935,6 +2935,8 @@
|
||||
"814sb",
|
||||
"815sb",
|
||||
"815sb",
|
||||
"815sb-gigantamax",
|
||||
"815sb-gigantamax",
|
||||
"816sb",
|
||||
"816sb",
|
||||
"817sb",
|
||||
@ -2985,6 +2987,8 @@
|
||||
"838sb",
|
||||
"839sb",
|
||||
"839sb",
|
||||
"839sb-gigantamax",
|
||||
"839sb-gigantamax",
|
||||
"840sb",
|
||||
"840sb",
|
||||
"841sb",
|
||||
@ -3061,8 +3065,8 @@
|
||||
"873sb",
|
||||
"874sb",
|
||||
"874sb",
|
||||
"875sb-no",
|
||||
"875sb-no",
|
||||
"875sb-no-ice",
|
||||
"875sb-no-ice",
|
||||
"875sb",
|
||||
"875sb",
|
||||
"876sb-female",
|
||||
@ -3201,26 +3205,26 @@
|
||||
"929sb",
|
||||
"930sb",
|
||||
"930sb",
|
||||
"931sb-blue",
|
||||
"931sb-blue",
|
||||
"931sb-green",
|
||||
"931sb-green",
|
||||
"931sb-white",
|
||||
"931sb-white",
|
||||
"931sb-yellow",
|
||||
"931sb-yellow",
|
||||
"931sb-blue-plumage-Disabled",
|
||||
"931sb-blue-plumage-Disabled",
|
||||
"931sb-green-plumage-Disabled",
|
||||
"931sb-green-plumage-Disabled",
|
||||
"931sb-white-plumage-Disabled",
|
||||
"931sb-white-plumage-Disabled",
|
||||
"931sb-yellow-plumage-Disabled",
|
||||
"931sb-yellow-plumage-Disabled",
|
||||
"932sb",
|
||||
"932sb",
|
||||
"933sb",
|
||||
"933sb",
|
||||
"934sb",
|
||||
"934sb",
|
||||
"935sb",
|
||||
"935sb",
|
||||
"936sb",
|
||||
"936sb",
|
||||
"937sb",
|
||||
"937sb",
|
||||
"935sb-Disabled",
|
||||
"935sb-Disabled",
|
||||
"936sb-Disabled",
|
||||
"936sb-Disabled",
|
||||
"937sb-Disabled",
|
||||
"937sb-Disabled",
|
||||
"938sb",
|
||||
"938sb",
|
||||
"939sb",
|
||||
@ -3311,8 +3315,6 @@
|
||||
"978sb-droopy",
|
||||
"978sb-stretchy",
|
||||
"978sb-stretchy",
|
||||
"979sb",
|
||||
"979sb",
|
||||
"980sb",
|
||||
"980sb",
|
||||
"981sb",
|
||||
@ -3376,10 +3378,10 @@
|
||||
"1005s",
|
||||
"1006s",
|
||||
"1006s",
|
||||
"1007s-apex",
|
||||
"1007s-apex",
|
||||
"1008s-ultimate",
|
||||
"1008s-ultimate",
|
||||
"1007s-apex-build-Disabled",
|
||||
"1007s-apex-build-Disabled",
|
||||
"1008s-ultimate-mode-Disabled",
|
||||
"1008s-ultimate-mode-Disabled",
|
||||
"115s-mega",
|
||||
"115s-mega",
|
||||
"127s-mega",
|
||||
@ -3546,6 +3548,8 @@
|
||||
"487s-origin",
|
||||
"531s-mega",
|
||||
"531s-mega",
|
||||
"569s-gigantamax",
|
||||
"569s-gigantamax",
|
||||
"6s-mega",
|
||||
"6s-mega",
|
||||
"6s-mega-x",
|
||||
@ -3624,10 +3628,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",
|
||||
@ -3640,8 +3644,8 @@
|
||||
"666s-monsoon",
|
||||
"666s-ocean",
|
||||
"666s-ocean",
|
||||
"666s-poke",
|
||||
"666s-poke",
|
||||
"666s-poke-ball",
|
||||
"666s-poke-ball",
|
||||
"666s-polar",
|
||||
"666s-polar",
|
||||
"666s-river",
|
||||
@ -3702,7 +3706,6 @@
|
||||
"6724s",
|
||||
"673s",
|
||||
"673s",
|
||||
|
||||
"675s",
|
||||
"675s",
|
||||
"676s",
|
||||
@ -3745,14 +3748,12 @@
|
||||
"692s",
|
||||
"693s",
|
||||
"693s",
|
||||
|
||||
"695s",
|
||||
"695s",
|
||||
"696s",
|
||||
"696s",
|
||||
"697s",
|
||||
"697s",
|
||||
|
||||
"699s",
|
||||
"699s",
|
||||
"700s",
|
||||
@ -3761,7 +3762,6 @@
|
||||
"701s",
|
||||
"702s",
|
||||
"702s",
|
||||
|
||||
"704s",
|
||||
"704s",
|
||||
"705s",
|
||||
@ -4060,6 +4060,8 @@
|
||||
"814s",
|
||||
"815s",
|
||||
"815s",
|
||||
"815s-gigantamax",
|
||||
"815s-gigantamax",
|
||||
"816s",
|
||||
"816s",
|
||||
"817s",
|
||||
@ -4110,6 +4112,8 @@
|
||||
"838s",
|
||||
"839s",
|
||||
"839s",
|
||||
"839s-gigantamax",
|
||||
"839s-gigantamax",
|
||||
"840s",
|
||||
"840s",
|
||||
"841s",
|
||||
@ -4186,8 +4190,8 @@
|
||||
"873s",
|
||||
"874s",
|
||||
"874s",
|
||||
"875s-no",
|
||||
"875s-no",
|
||||
"875s-no-ice",
|
||||
"875s-no-ice",
|
||||
"875s",
|
||||
"875s",
|
||||
"876s-female",
|
||||
@ -4326,26 +4330,26 @@
|
||||
"929s",
|
||||
"930s",
|
||||
"930s",
|
||||
"931s-blue",
|
||||
"931s-blue",
|
||||
"931s-green",
|
||||
"931s-green",
|
||||
"931s-white",
|
||||
"931s-white",
|
||||
"931s-yellow",
|
||||
"931s-yellow",
|
||||
"931s-blue-plumage-Disabled",
|
||||
"931s-blue-plumage-Disabled",
|
||||
"931s-green-plumage-Disabled",
|
||||
"931s-green-plumage-Disabled",
|
||||
"931s-white-plumage-Disabled",
|
||||
"931s-white-plumage-Disabled",
|
||||
"931s-yellow-plumage-Disabled",
|
||||
"931s-yellow-plumage-Disabled",
|
||||
"932s",
|
||||
"932s",
|
||||
"933s",
|
||||
"933s",
|
||||
"934s",
|
||||
"934s",
|
||||
"935s",
|
||||
"935s",
|
||||
"936s",
|
||||
"936s",
|
||||
"937s",
|
||||
"937s",
|
||||
"935s-Disabled",
|
||||
"935s-Disabled",
|
||||
"936s-Disabled",
|
||||
"936s-Disabled",
|
||||
"937s-Disabled",
|
||||
"937s-Disabled",
|
||||
"938s",
|
||||
"938s",
|
||||
"939s",
|
||||
@ -4436,8 +4440,8 @@
|
||||
"978s-droopy",
|
||||
"978s-stretchy",
|
||||
"978s-stretchy",
|
||||
"979s",
|
||||
"979s",
|
||||
"979s-Disabled",
|
||||
"979s-Disabled",
|
||||
"980s",
|
||||
"980s",
|
||||
"981s",
|
||||
@ -4485,11 +4489,10 @@
|
||||
"1000",
|
||||
"1001",
|
||||
"1004",
|
||||
"1007-apex",
|
||||
"1007-apex",
|
||||
"1007-apex",
|
||||
"1007-apex",
|
||||
"1008-ultimate",
|
||||
"1007-apex-build-Disabled",
|
||||
"1007-apex-build-Disabled",
|
||||
"1008-ultimate-mode-Disabled",
|
||||
"1008-ultimate-mode-Disabled",
|
||||
"127-mega",
|
||||
"142-mega",
|
||||
"150-mega",
|
||||
@ -4545,19 +4548,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",
|
||||
@ -4566,8 +4565,6 @@
|
||||
"666-poke",
|
||||
"666-polar",
|
||||
"666-river",
|
||||
"666-river_2",
|
||||
"666-river_2",
|
||||
"666-sandstorm",
|
||||
"666-savanna",
|
||||
"666-sun",
|
||||
@ -4704,21 +4701,21 @@
|
||||
"933_3",
|
||||
"933_3",
|
||||
"934",
|
||||
"935",
|
||||
"935_3",
|
||||
"935_3",
|
||||
"936_1",
|
||||
"936_1",
|
||||
"936_2",
|
||||
"936_2",
|
||||
"936_3",
|
||||
"936_3",
|
||||
"937_1",
|
||||
"937_1",
|
||||
"937_2",
|
||||
"937_2",
|
||||
"937_3",
|
||||
"937_3",
|
||||
"935-Disabled",
|
||||
"935_3-Disabled",
|
||||
"935_3-Disabled",
|
||||
"936_1-Disabled",
|
||||
"936_1-Disabled",
|
||||
"936_2-Disabled",
|
||||
"936_2-Disabled",
|
||||
"936_3-Disabled",
|
||||
"936_3-Disabled",
|
||||
"937_1-Disabled",
|
||||
"937_1-Disabled",
|
||||
"937_2-Disabled",
|
||||
"937_2-Disabled",
|
||||
"937_3-Disabled",
|
||||
"937_3-Disabled",
|
||||
"94-mega_1",
|
||||
"94-mega_1",
|
||||
"94-mega_2",
|
||||
@ -4761,11 +4758,10 @@
|
||||
"1000b",
|
||||
"1001b",
|
||||
"1004b",
|
||||
"1007b-apex",
|
||||
"1007b-apex",
|
||||
"1007b-apex",
|
||||
"1007b-apex",
|
||||
"1008b-ultimate",
|
||||
"1007b-apex-build-Disabled",
|
||||
"1007b-apex-build-Disabled",
|
||||
"1008b-ultimate-mode-Disabled",
|
||||
"1008b-ultimate-mode-Disabled",
|
||||
"127b-mega",
|
||||
"142b-mega",
|
||||
"150b-mega",
|
||||
@ -4817,86 +4813,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",
|
||||
@ -4966,24 +4922,24 @@
|
||||
"932b",
|
||||
"933b",
|
||||
"934b",
|
||||
"935_1b",
|
||||
"935_1b",
|
||||
"935_2b",
|
||||
"935_2b",
|
||||
"935_3b",
|
||||
"935_3b",
|
||||
"936_1b",
|
||||
"936_1b",
|
||||
"936_2b",
|
||||
"936_2b",
|
||||
"936_3b",
|
||||
"936_3b",
|
||||
"937_1b",
|
||||
"937_1b",
|
||||
"937_2b",
|
||||
"937_2b",
|
||||
"937_3b",
|
||||
"937_3b",
|
||||
"935_1b-Disabled",
|
||||
"935_1b-Disabled",
|
||||
"935_2b-Disabled",
|
||||
"935_2b-Disabled",
|
||||
"935_3b-Disabled",
|
||||
"935_3b-Disabled",
|
||||
"936_1b-Disabled",
|
||||
"936_1b-Disabled",
|
||||
"936_2b-Disabled",
|
||||
"936_2b-Disabled",
|
||||
"936_3b-Disabled",
|
||||
"936_3b-Disabled",
|
||||
"937_1b-Disabled",
|
||||
"937_1b-Disabled",
|
||||
"937_2b-Disabled",
|
||||
"937_2b-Disabled",
|
||||
"937_3b-Disabled",
|
||||
"937_3b-Disabled",
|
||||
"94b-mega",
|
||||
"948b",
|
||||
"949b",
|
||||
|
BIN
public/images/events/pkmnday2025event-de.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
public/images/events/pkmnday2025event-en.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
public/images/events/pkmnday2025event-es-ES.png
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
public/images/events/pkmnday2025event-fr.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
public/images/events/pkmnday2025event-it.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
public/images/events/pkmnday2025event-ja.png
Normal file
After Width: | Height: | Size: 30 KiB |
BIN
public/images/events/pkmnday2025event-ko.png
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
public/images/events/pkmnday2025event-pt-BR.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
public/images/events/pkmnday2025event-zh-CN.png
Normal file
After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 507 B After Width: | Height: | Size: 528 B |
Before Width: | Height: | Size: 948 B After Width: | Height: | Size: 982 B |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 970 B After Width: | Height: | Size: 1010 B |
Before Width: | Height: | Size: 952 B After Width: | Height: | Size: 1005 B |
Before Width: | Height: | Size: 994 B After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 910 B After Width: | Height: | Size: 949 B |
Before Width: | Height: | Size: 906 B After Width: | Height: | Size: 953 B |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 8.1 KiB |
1478
public/images/pokemon/exp/569-gigantamax.json
Normal file
BIN
public/images/pokemon/exp/569-gigantamax.png
Normal file
After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 6.2 KiB After Width: | Height: | Size: 7.0 KiB |
Before Width: | Height: | Size: 6.1 KiB After Width: | Height: | Size: 6.9 KiB |
@ -1,314 +1,551 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "666-meadow.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 243,
|
||||
"h": 243
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 93
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 5,
|
||||
"w": 84,
|
||||
"h": 88
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 84,
|
||||
"h": 88
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 93
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 3,
|
||||
"y": 4,
|
||||
"w": 77,
|
||||
"h": 89
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 88,
|
||||
"w": 77,
|
||||
"h": 89
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0014.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 93
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 3,
|
||||
"y": 4,
|
||||
"w": 77,
|
||||
"h": 89
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 88,
|
||||
"w": 77,
|
||||
"h": 89
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 93
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 7,
|
||||
"y": 3,
|
||||
"w": 69,
|
||||
"h": 89
|
||||
},
|
||||
"frame": {
|
||||
"x": 77,
|
||||
"y": 88,
|
||||
"w": 69,
|
||||
"h": 89
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0013.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 93
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 7,
|
||||
"y": 3,
|
||||
"w": 69,
|
||||
"h": 89
|
||||
},
|
||||
"frame": {
|
||||
"x": 77,
|
||||
"y": 88,
|
||||
"w": 69,
|
||||
"h": 89
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 93
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 10,
|
||||
"y": 3,
|
||||
"w": 62,
|
||||
"h": 87
|
||||
},
|
||||
"frame": {
|
||||
"x": 84,
|
||||
"y": 0,
|
||||
"w": 62,
|
||||
"h": 87
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 93
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 10,
|
||||
"y": 3,
|
||||
"w": 62,
|
||||
"h": 87
|
||||
},
|
||||
"frame": {
|
||||
"x": 84,
|
||||
"y": 0,
|
||||
"w": 62,
|
||||
"h": 87
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 93
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 13,
|
||||
"y": 2,
|
||||
"w": 56,
|
||||
"h": 86
|
||||
},
|
||||
"frame": {
|
||||
"x": 146,
|
||||
"y": 0,
|
||||
"w": 56,
|
||||
"h": 86
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 93
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 13,
|
||||
"y": 2,
|
||||
"w": 56,
|
||||
"h": 86
|
||||
},
|
||||
"frame": {
|
||||
"x": 146,
|
||||
"y": 0,
|
||||
"w": 56,
|
||||
"h": 86
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 93
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 19,
|
||||
"y": 0,
|
||||
"w": 41,
|
||||
"h": 85
|
||||
},
|
||||
"frame": {
|
||||
"x": 202,
|
||||
"y": 0,
|
||||
"w": 41,
|
||||
"h": 85
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 93
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 15,
|
||||
"y": 1,
|
||||
"w": 51,
|
||||
"h": 86
|
||||
},
|
||||
"frame": {
|
||||
"x": 146,
|
||||
"y": 86,
|
||||
"w": 51,
|
||||
"h": 86
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 93
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 15,
|
||||
"y": 1,
|
||||
"w": 51,
|
||||
"h": 86
|
||||
},
|
||||
"frame": {
|
||||
"x": 146,
|
||||
"y": 86,
|
||||
"w": 51,
|
||||
"h": 86
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 93
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 17,
|
||||
"y": 0,
|
||||
"w": 46,
|
||||
"h": 86
|
||||
},
|
||||
"frame": {
|
||||
"x": 197,
|
||||
"y": 86,
|
||||
"w": 46,
|
||||
"h": 86
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 93
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 17,
|
||||
"y": 0,
|
||||
"w": 46,
|
||||
"h": 86
|
||||
},
|
||||
"frame": {
|
||||
"x": 197,
|
||||
"y": 86,
|
||||
"w": 46,
|
||||
"h": 86
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:223ce33721ef8da9ff40286099c20de4:b82acd304c2a8b8cebeda2043a3e1f96:f8ac4807b4d6eef2256fa1b93e0f89ba$"
|
||||
}
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 2, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 14, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 347, "y": 2, "w": 49, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 15, "w": 49, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 16, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 347, "y": 71, "w": 49, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 17, "w": 49, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 18, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 347, "y": 140, "w": 49, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 20, "w": 49, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 21, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 347, "y": 140, "w": 49, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 20, "w": 49, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 18, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 347, "y": 71, "w": 49, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 17, "w": 49, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 16, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 347, "y": 2, "w": 49, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 15, "w": 49, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0013.png",
|
||||
"frame": { "x": 2, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 14, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0014.png",
|
||||
"frame": { "x": 347, "y": 2, "w": 49, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 15, "w": 49, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0015.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 16, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0016.png",
|
||||
"frame": { "x": 347, "y": 71, "w": 49, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 17, "w": 49, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0017.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 18, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0018.png",
|
||||
"frame": { "x": 347, "y": 140, "w": 49, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 20, "w": 49, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0019.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 21, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0020.png",
|
||||
"frame": { "x": 347, "y": 140, "w": 49, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 20, "w": 49, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0021.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 18, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0022.png",
|
||||
"frame": { "x": 347, "y": 71, "w": 49, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 17, "w": 49, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0023.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 16, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0024.png",
|
||||
"frame": { "x": 347, "y": 2, "w": 49, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 15, "w": 49, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0025.png",
|
||||
"frame": { "x": 2, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 14, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0026.png",
|
||||
"frame": { "x": 347, "y": 2, "w": 49, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 15, "w": 49, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0027.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 16, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0028.png",
|
||||
"frame": { "x": 347, "y": 71, "w": 49, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 17, "w": 49, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0029.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 18, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0030.png",
|
||||
"frame": { "x": 347, "y": 140, "w": 49, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 20, "w": 49, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0031.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 21, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0032.png",
|
||||
"frame": { "x": 347, "y": 140, "w": 49, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 20, "w": 49, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0033.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 18, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0034.png",
|
||||
"frame": { "x": 347, "y": 71, "w": 49, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 17, "w": 49, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0035.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 16, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0036.png",
|
||||
"frame": { "x": 347, "y": 2, "w": 49, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 15, "w": 49, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0037.png",
|
||||
"frame": { "x": 2, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 14, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0038.png",
|
||||
"frame": { "x": 2, "y": 209, "w": 49, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 15, "w": 49, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0039.png",
|
||||
"frame": { "x": 278, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 16, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0040.png",
|
||||
"frame": { "x": 53, "y": 209, "w": 49, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 17, "w": 49, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0041.png",
|
||||
"frame": { "x": 2, "y": 71, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 18, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0042.png",
|
||||
"frame": { "x": 104, "y": 209, "w": 49, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 19, "w": 49, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0043.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 20, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0044.png",
|
||||
"frame": { "x": 155, "y": 209, "w": 49, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 19, "w": 49, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0045.png",
|
||||
"frame": { "x": 140, "y": 71, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 18, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0046.png",
|
||||
"frame": { "x": 206, "y": 209, "w": 49, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 17, "w": 49, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0047.png",
|
||||
"frame": { "x": 209, "y": 71, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 16, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0048.png",
|
||||
"frame": { "x": 257, "y": 209, "w": 49, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 15, "w": 49, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0049.png",
|
||||
"frame": { "x": 278, "y": 71, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 14, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0050.png",
|
||||
"frame": { "x": 308, "y": 209, "w": 49, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 15, "w": 49, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0051.png",
|
||||
"frame": { "x": 2, "y": 140, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 16, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0052.png",
|
||||
"frame": { "x": 53, "y": 209, "w": 49, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 17, "w": 49, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0053.png",
|
||||
"frame": { "x": 71, "y": 140, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 18, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0054.png",
|
||||
"frame": { "x": 104, "y": 209, "w": 49, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 19, "w": 49, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0055.png",
|
||||
"frame": { "x": 140, "y": 140, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 20, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0056.png",
|
||||
"frame": { "x": 2, "y": 278, "w": 49, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 19, "w": 49, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0057.png",
|
||||
"frame": { "x": 209, "y": 140, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 18, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0058.png",
|
||||
"frame": { "x": 53, "y": 278, "w": 49, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 17, "w": 49, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0059.png",
|
||||
"frame": { "x": 278, "y": 140, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 16, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0060.png",
|
||||
"frame": { "x": 104, "y": 278, "w": 49, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 15, "w": 49, "h": 67 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.12-x64",
|
||||
"image": "666-meadow.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 398, "h": 347 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 5.5 KiB |
Before Width: | Height: | Size: 6.1 KiB After Width: | Height: | Size: 7.0 KiB |
Before Width: | Height: | Size: 6.0 KiB After Width: | Height: | Size: 6.9 KiB |
659
public/images/pokemon/exp/815-gigantamax.json
Normal file
@ -0,0 +1,659 @@
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 343, "y": 292, "w": 81, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 2, "w": 81, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 357, "y": 1, "w": 86, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 2, "w": 86, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 177, "y": 194, "w": 86, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 4, "w": 86, "h": 94 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 179, "y": 1, "w": 87, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 4, "w": 87, "h": 94 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 85, "y": 292, "w": 82, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 4, "w": 82, "h": 94 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 252, "y": 482, "w": 81, "h": 93 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 81, "h": 93 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 258, "y": 290, "w": 83, "h": 93 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 5, "w": 83, "h": 93 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 416, "y": 484, "w": 79, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 4, "w": 79, "h": 94 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 426, "y": 292, "w": 81, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 3, "w": 81, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 445, "y": 1, "w": 86, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 2, "w": 86, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 179, "y": 97, "w": 86, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 2, "w": 86, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 87, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 2, "w": 87, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0013.png",
|
||||
"frame": { "x": 523, "y": 195, "w": 82, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 2, "w": 82, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0014.png",
|
||||
"frame": { "x": 509, "y": 292, "w": 81, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 2, "w": 81, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0015.png",
|
||||
"frame": { "x": 89, "y": 195, "w": 83, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 2, "w": 83, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0016.png",
|
||||
"frame": { "x": 531, "y": 98, "w": 79, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 2, "w": 79, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0017.png",
|
||||
"frame": { "x": 343, "y": 292, "w": 81, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 2, "w": 81, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0018.png",
|
||||
"frame": { "x": 357, "y": 1, "w": 86, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 2, "w": 86, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0019.png",
|
||||
"frame": { "x": 177, "y": 194, "w": 86, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 4, "w": 86, "h": 94 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0020.png",
|
||||
"frame": { "x": 179, "y": 1, "w": 87, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 4, "w": 87, "h": 94 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0021.png",
|
||||
"frame": { "x": 85, "y": 292, "w": 82, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 4, "w": 82, "h": 94 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0022.png",
|
||||
"frame": { "x": 252, "y": 482, "w": 81, "h": 93 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 81, "h": 93 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0023.png",
|
||||
"frame": { "x": 258, "y": 290, "w": 83, "h": 93 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 5, "w": 83, "h": 93 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0024.png",
|
||||
"frame": { "x": 416, "y": 484, "w": 79, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 4, "w": 79, "h": 94 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0025.png",
|
||||
"frame": { "x": 426, "y": 292, "w": 81, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 3, "w": 81, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0026.png",
|
||||
"frame": { "x": 445, "y": 1, "w": 86, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 2, "w": 86, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0027.png",
|
||||
"frame": { "x": 179, "y": 97, "w": 86, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 2, "w": 86, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0028.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 87, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 2, "w": 87, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0029.png",
|
||||
"frame": { "x": 523, "y": 195, "w": 82, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 2, "w": 82, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0030.png",
|
||||
"frame": { "x": 509, "y": 292, "w": 81, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 2, "w": 81, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0031.png",
|
||||
"frame": { "x": 89, "y": 195, "w": 83, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 2, "w": 83, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0032.png",
|
||||
"frame": { "x": 531, "y": 98, "w": 79, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 2, "w": 79, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0033.png",
|
||||
"frame": { "x": 343, "y": 292, "w": 81, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 2, "w": 81, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0034.png",
|
||||
"frame": { "x": 357, "y": 1, "w": 86, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 2, "w": 86, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0035.png",
|
||||
"frame": { "x": 177, "y": 194, "w": 86, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 4, "w": 86, "h": 94 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0036.png",
|
||||
"frame": { "x": 179, "y": 1, "w": 87, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 4, "w": 87, "h": 94 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0037.png",
|
||||
"frame": { "x": 85, "y": 292, "w": 82, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 4, "w": 82, "h": 94 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0038.png",
|
||||
"frame": { "x": 252, "y": 482, "w": 81, "h": 93 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 81, "h": 93 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0039.png",
|
||||
"frame": { "x": 258, "y": 290, "w": 83, "h": 93 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 5, "w": 83, "h": 93 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0040.png",
|
||||
"frame": { "x": 416, "y": 484, "w": 79, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 4, "w": 79, "h": 94 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0041.png",
|
||||
"frame": { "x": 426, "y": 292, "w": 81, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 3, "w": 81, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0042.png",
|
||||
"frame": { "x": 445, "y": 1, "w": 86, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 2, "w": 86, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0043.png",
|
||||
"frame": { "x": 179, "y": 97, "w": 86, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 2, "w": 86, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0044.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 87, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 2, "w": 87, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0045.png",
|
||||
"frame": { "x": 523, "y": 195, "w": 82, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 2, "w": 82, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0046.png",
|
||||
"frame": { "x": 509, "y": 292, "w": 81, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 2, "w": 81, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0047.png",
|
||||
"frame": { "x": 89, "y": 195, "w": 83, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 2, "w": 83, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0048.png",
|
||||
"frame": { "x": 531, "y": 98, "w": 79, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 2, "w": 79, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0049.png",
|
||||
"frame": { "x": 258, "y": 385, "w": 81, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 2, "w": 81, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0050.png",
|
||||
"frame": { "x": 267, "y": 97, "w": 86, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 2, "w": 86, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0051.png",
|
||||
"frame": { "x": 1, "y": 98, "w": 86, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 2, "w": 86, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0052.png",
|
||||
"frame": { "x": 268, "y": 1, "w": 87, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 3, "w": 87, "h": 94 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0053.png",
|
||||
"frame": { "x": 426, "y": 389, "w": 82, "h": 93 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 4, "w": 82, "h": 93 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0054.png",
|
||||
"frame": { "x": 1, "y": 484, "w": 81, "h": 92 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 6, "w": 81, "h": 92 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0055.png",
|
||||
"frame": { "x": 341, "y": 389, "w": 83, "h": 92 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 7, "w": 83, "h": 92 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0056.png",
|
||||
"frame": { "x": 84, "y": 485, "w": 79, "h": 91 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 9, "w": 79, "h": 91 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0057.png",
|
||||
"frame": { "x": 167, "y": 484, "w": 81, "h": 92 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 7, "w": 81, "h": 92 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0058.png",
|
||||
"frame": { "x": 1, "y": 195, "w": 86, "h": 93 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 5, "w": 86, "h": 93 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0059.png",
|
||||
"frame": { "x": 265, "y": 194, "w": 86, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 3, "w": 86, "h": 94 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0060.png",
|
||||
"frame": { "x": 89, "y": 98, "w": 86, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 1, "w": 86, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0061.png",
|
||||
"frame": { "x": 1, "y": 290, "w": 82, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 1, "w": 82, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0062.png",
|
||||
"frame": { "x": 1, "y": 387, "w": 81, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 1, "w": 81, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0063.png",
|
||||
"frame": { "x": 353, "y": 195, "w": 83, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 10, "y": 0, "w": 83, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0064.png",
|
||||
"frame": { "x": 510, "y": 389, "w": 80, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 12, "y": 1, "w": 80, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0065.png",
|
||||
"frame": { "x": 169, "y": 387, "w": 81, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 13, "y": 1, "w": 81, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0066.png",
|
||||
"frame": { "x": 355, "y": 98, "w": 86, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 1, "w": 86, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0067.png",
|
||||
"frame": { "x": 443, "y": 98, "w": 86, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 2, "w": 86, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0068.png",
|
||||
"frame": { "x": 90, "y": 1, "w": 87, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 10, "y": 3, "w": 87, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0069.png",
|
||||
"frame": { "x": 174, "y": 290, "w": 82, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 82, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0070.png",
|
||||
"frame": { "x": 84, "y": 388, "w": 81, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 4, "w": 81, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0071.png",
|
||||
"frame": { "x": 438, "y": 195, "w": 83, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 3, "w": 83, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0072.png",
|
||||
"frame": { "x": 335, "y": 483, "w": 79, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 2, "w": 79, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.13-x64",
|
||||
"image": "815-gigantamax.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 611, "h": 579 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
BIN
public/images/pokemon/exp/815-gigantamax.png
Normal file
After Width: | Height: | Size: 32 KiB |
821
public/images/pokemon/exp/839-gigantamax.json
Normal file
@ -0,0 +1,821 @@
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 525, "y": 567, "w": 84, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 0, "w": 84, "h": 96 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 441, "y": 566, "w": 84, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 10, "y": 0, "w": 84, "h": 96 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 609, "y": 567, "w": 83, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 12, "y": 0, "w": 83, "h": 96 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 255, "y": 563, "w": 84, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 12, "y": 0, "w": 84, "h": 96 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 171, "y": 563, "w": 84, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 12, "y": 0, "w": 84, "h": 96 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 0, "y": 569, "w": 83, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 11, "y": 1, "w": 83, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 339, "y": 569, "w": 82, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 1, "w": 82, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 0, "y": 474, "w": 86, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 1, "w": 86, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 464, "y": 375, "w": 89, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 1, "w": 89, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 580, "y": 190, "w": 92, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 1, "w": 92, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 95, "y": 96, "w": 94, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 3, "y": 1, "w": 94, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 198, "y": 95, "w": 95, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 1, "w": 95, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0013.png",
|
||||
"frame": { "x": 491, "y": 0, "w": 96, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 1, "w": 96, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0014.png",
|
||||
"frame": { "x": 297, "y": 0, "w": 98, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 1, "w": 98, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0015.png",
|
||||
"frame": { "x": 0, "y": 0, "w": 100, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 1, "w": 100, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0016.png",
|
||||
"frame": { "x": 198, "y": 0, "w": 99, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 1, "w": 99, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0017.png",
|
||||
"frame": { "x": 100, "y": 0, "w": 98, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 0, "w": 98, "h": 96 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0018.png",
|
||||
"frame": { "x": 395, "y": 0, "w": 96, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 3, "y": 0, "w": 96, "h": 96 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0019.png",
|
||||
"frame": { "x": 189, "y": 190, "w": 92, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 92, "h": 96 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0020.png",
|
||||
"frame": { "x": 89, "y": 379, "w": 88, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 0, "w": 88, "h": 96 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0021.png",
|
||||
"frame": { "x": 525, "y": 567, "w": 84, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 0, "w": 84, "h": 96 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0022.png",
|
||||
"frame": { "x": 441, "y": 566, "w": 84, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 10, "y": 0, "w": 84, "h": 96 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0023.png",
|
||||
"frame": { "x": 609, "y": 567, "w": 83, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 12, "y": 0, "w": 83, "h": 96 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0024.png",
|
||||
"frame": { "x": 255, "y": 563, "w": 84, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 12, "y": 0, "w": 84, "h": 96 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0025.png",
|
||||
"frame": { "x": 171, "y": 563, "w": 84, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 12, "y": 0, "w": 84, "h": 96 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0026.png",
|
||||
"frame": { "x": 0, "y": 569, "w": 83, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 11, "y": 1, "w": 83, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0027.png",
|
||||
"frame": { "x": 339, "y": 569, "w": 82, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 1, "w": 82, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0028.png",
|
||||
"frame": { "x": 0, "y": 474, "w": 86, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 1, "w": 86, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0029.png",
|
||||
"frame": { "x": 464, "y": 375, "w": 89, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 1, "w": 89, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0030.png",
|
||||
"frame": { "x": 580, "y": 190, "w": 92, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 1, "w": 92, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0031.png",
|
||||
"frame": { "x": 95, "y": 96, "w": 94, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 3, "y": 1, "w": 94, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0032.png",
|
||||
"frame": { "x": 198, "y": 95, "w": 95, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 1, "w": 95, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0033.png",
|
||||
"frame": { "x": 491, "y": 0, "w": 96, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 1, "w": 96, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0034.png",
|
||||
"frame": { "x": 297, "y": 0, "w": 98, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 1, "w": 98, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0035.png",
|
||||
"frame": { "x": 0, "y": 0, "w": 100, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 1, "w": 100, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0036.png",
|
||||
"frame": { "x": 198, "y": 0, "w": 99, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 1, "w": 99, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0037.png",
|
||||
"frame": { "x": 100, "y": 0, "w": 98, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 0, "w": 98, "h": 96 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0038.png",
|
||||
"frame": { "x": 395, "y": 0, "w": 96, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 3, "y": 0, "w": 96, "h": 96 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0039.png",
|
||||
"frame": { "x": 189, "y": 190, "w": 92, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 92, "h": 96 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0040.png",
|
||||
"frame": { "x": 89, "y": 379, "w": 88, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 0, "w": 88, "h": 96 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0041.png",
|
||||
"frame": { "x": 525, "y": 567, "w": 84, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 0, "w": 84, "h": 96 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0042.png",
|
||||
"frame": { "x": 441, "y": 566, "w": 84, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 10, "y": 0, "w": 84, "h": 96 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0043.png",
|
||||
"frame": { "x": 609, "y": 567, "w": 83, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 12, "y": 0, "w": 83, "h": 96 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0044.png",
|
||||
"frame": { "x": 255, "y": 563, "w": 84, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 12, "y": 0, "w": 84, "h": 96 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0045.png",
|
||||
"frame": { "x": 171, "y": 563, "w": 84, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 12, "y": 0, "w": 84, "h": 96 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0046.png",
|
||||
"frame": { "x": 0, "y": 569, "w": 83, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 11, "y": 1, "w": 83, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0047.png",
|
||||
"frame": { "x": 339, "y": 569, "w": 82, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 1, "w": 82, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0048.png",
|
||||
"frame": { "x": 0, "y": 474, "w": 86, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 1, "w": 86, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0049.png",
|
||||
"frame": { "x": 464, "y": 375, "w": 89, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 1, "w": 89, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0050.png",
|
||||
"frame": { "x": 580, "y": 190, "w": 92, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 1, "w": 92, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0051.png",
|
||||
"frame": { "x": 95, "y": 96, "w": 94, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 3, "y": 1, "w": 94, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0052.png",
|
||||
"frame": { "x": 198, "y": 95, "w": 95, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 1, "w": 95, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0053.png",
|
||||
"frame": { "x": 491, "y": 0, "w": 96, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 1, "w": 96, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0054.png",
|
||||
"frame": { "x": 297, "y": 0, "w": 98, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 1, "w": 98, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0055.png",
|
||||
"frame": { "x": 0, "y": 0, "w": 100, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 1, "w": 100, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0056.png",
|
||||
"frame": { "x": 198, "y": 0, "w": 99, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 1, "w": 99, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0057.png",
|
||||
"frame": { "x": 100, "y": 0, "w": 98, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 0, "w": 98, "h": 96 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0058.png",
|
||||
"frame": { "x": 395, "y": 0, "w": 96, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 3, "y": 0, "w": 96, "h": 96 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0059.png",
|
||||
"frame": { "x": 189, "y": 190, "w": 92, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 92, "h": 96 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0060.png",
|
||||
"frame": { "x": 89, "y": 379, "w": 88, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 0, "w": 88, "h": 96 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0061.png",
|
||||
"frame": { "x": 525, "y": 567, "w": 84, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 0, "w": 84, "h": 96 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0062.png",
|
||||
"frame": { "x": 454, "y": 470, "w": 86, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 10, "y": 0, "w": 86, "h": 96 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0063.png",
|
||||
"frame": { "x": 0, "y": 379, "w": 89, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 12, "y": 1, "w": 89, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0064.png",
|
||||
"frame": { "x": 573, "y": 285, "w": 91, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 13, "y": 1, "w": 91, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0065.png",
|
||||
"frame": { "x": 93, "y": 191, "w": 92, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 15, "y": 1, "w": 92, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0066.png",
|
||||
"frame": { "x": 390, "y": 96, "w": 94, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 17, "y": 1, "w": 94, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0067.png",
|
||||
"frame": { "x": 585, "y": 96, "w": 94, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 17, "y": 2, "w": 94, "h": 94 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0068.png",
|
||||
"frame": { "x": 293, "y": 95, "w": 97, "h": 93 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 3, "w": 97, "h": 93 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0069.png",
|
||||
"frame": { "x": 484, "y": 190, "w": 96, "h": 92 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 12, "y": 4, "w": 96, "h": 92 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0070.png",
|
||||
"frame": { "x": 92, "y": 286, "w": 92, "h": 93 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 3, "w": 92, "h": 93 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0071.png",
|
||||
"frame": { "x": 177, "y": 471, "w": 89, "h": 92 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 4, "w": 89, "h": 92 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0072.png",
|
||||
"frame": { "x": 177, "y": 379, "w": 91, "h": 92 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 4, "w": 91, "h": 92 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0073.png",
|
||||
"frame": { "x": 184, "y": 286, "w": 91, "h": 93 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 3, "w": 91, "h": 93 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0074.png",
|
||||
"frame": { "x": 480, "y": 282, "w": 93, "h": 93 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 3, "w": 93, "h": 93 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0075.png",
|
||||
"frame": { "x": 281, "y": 281, "w": 93, "h": 93 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 3, "w": 93, "h": 93 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0076.png",
|
||||
"frame": { "x": 293, "y": 188, "w": 95, "h": 93 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 3, "w": 95, "h": 93 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0077.png",
|
||||
"frame": { "x": 587, "y": 0, "w": 95, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 0, "w": 95, "h": 96 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0078.png",
|
||||
"frame": { "x": 0, "y": 95, "w": 95, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 1, "w": 95, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0079.png",
|
||||
"frame": { "x": 491, "y": 95, "w": 94, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 1, "w": 94, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0080.png",
|
||||
"frame": { "x": 0, "y": 190, "w": 93, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 1, "w": 93, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0081.png",
|
||||
"frame": { "x": 388, "y": 191, "w": 92, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 1, "w": 92, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0082.png",
|
||||
"frame": { "x": 0, "y": 285, "w": 92, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 2, "w": 92, "h": 94 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0083.png",
|
||||
"frame": { "x": 275, "y": 374, "w": 90, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 2, "w": 90, "h": 94 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0084.png",
|
||||
"frame": { "x": 374, "y": 286, "w": 90, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 2, "w": 90, "h": 94 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0085.png",
|
||||
"frame": { "x": 365, "y": 380, "w": 89, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 2, "w": 89, "h": 94 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0086.png",
|
||||
"frame": { "x": 553, "y": 380, "w": 89, "h": 93 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 3, "w": 89, "h": 93 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0087.png",
|
||||
"frame": { "x": 540, "y": 473, "w": 87, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 2, "w": 87, "h": 94 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0088.png",
|
||||
"frame": { "x": 268, "y": 468, "w": 87, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 87, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0089.png",
|
||||
"frame": { "x": 355, "y": 474, "w": 86, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 86, "h": 95 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0090.png",
|
||||
"frame": { "x": 86, "y": 475, "w": 85, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 0, "w": 85, "h": 96 },
|
||||
"sourceSize": { "w": 111, "h": 96 },
|
||||
"duration": 100
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.13-x64",
|
||||
"image": "839-gigantamax.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 692, "h": 664 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
BIN
public/images/pokemon/exp/839-gigantamax.png
Normal file
After Width: | Height: | Size: 64 KiB |
1478
public/images/pokemon/exp/back/569-gigantamax.json
Normal file
BIN
public/images/pokemon/exp/back/569-gigantamax.png
Normal file
After Width: | Height: | Size: 9.0 KiB |
@ -1,104 +1,119 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "666-archipelago.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 136,
|
||||
"h": 136
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 16,
|
||||
"y": 1,
|
||||
"w": 42,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 42,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 16,
|
||||
"y": 1,
|
||||
"w": 42,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 42,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 42,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 3,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 42,
|
||||
"y": 68,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:223e2a75aa192f3fb67e18f7f0d6c4c7:ba854fe0d08f005e9aa52e55cdc7eb4e:80cdb6dd219378a41ccf5c2acc7e7786$"
|
||||
}
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 2, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 0, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 2, "y": 71, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 6, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.12-x64",
|
||||
"image": "666-archipelago.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 262, "h": 140 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.7 KiB |
@ -1,104 +1,119 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "666-continental.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 136,
|
||||
"h": 136
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 13,
|
||||
"y": 1,
|
||||
"w": 46,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 46,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 13,
|
||||
"y": 1,
|
||||
"w": 46,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 46,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 46,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 3,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 46,
|
||||
"y": 68,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:89725e18f2e4d97217076ac82b40230b:c83c3d03ad1200fc71d95ecafb54bc03:23aaac2256d564b9d8a58d7de70397c3$"
|
||||
}
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 2, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 0, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 2, "y": 71, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 6, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.12-x64",
|
||||
"image": "666-continental.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 262, "h": 140 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 2.7 KiB |
@ -1,104 +1,119 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "666-elegant.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 136,
|
||||
"h": 136
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 15,
|
||||
"y": 1,
|
||||
"w": 44,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 44,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 15,
|
||||
"y": 1,
|
||||
"w": 44,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 44,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 44,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 3,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 44,
|
||||
"y": 68,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:bbba66d69955866664e782205a4af88d:66e99814147be780756a4d4ccd8b31dc:d6b035048c66474f6236a3bc923faa7b$"
|
||||
}
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 2, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 0, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 2, "y": 71, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 6, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.12-x64",
|
||||
"image": "666-elegant.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 262, "h": 140 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.7 KiB |
@ -1,104 +1,119 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "666-fancy.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 137,
|
||||
"h": 137
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 15,
|
||||
"y": 1,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 67,
|
||||
"y": 0,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 15,
|
||||
"y": 1,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 68,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 3,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 43,
|
||||
"y": 69,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:570d1bf9b987c1bf5ebfe39e485464dd:a3c8bebd39c1c84b1bf0fdf600026ea5:6d5edff9a806f43feff031c9919c9aca$"
|
||||
}
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 2, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 0, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 2, "y": 71, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 6, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.12-x64",
|
||||
"image": "666-fancy.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 262, "h": 140 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 2.9 KiB |
@ -1,104 +1,119 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "666-garden.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 136,
|
||||
"h": 136
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 16,
|
||||
"y": 1,
|
||||
"w": 42,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 42,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 16,
|
||||
"y": 1,
|
||||
"w": 42,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 42,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 42,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 3,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 42,
|
||||
"y": 68,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:4b2ac69ef7a99f6cef35d3fd38c74d01:8a4c29615f3bf20e9c5d0bb372a5b210:f13a1a8fa0a411aa91fccb833ac8719c$"
|
||||
}
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 2, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 0, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 2, "y": 71, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 6, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.12-x64",
|
||||
"image": "666-garden.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 262, "h": 140 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.7 KiB |
@ -1,104 +1,119 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "666-high-plains.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 137,
|
||||
"h": 137
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 15,
|
||||
"y": 1,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 67,
|
||||
"y": 0,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 15,
|
||||
"y": 1,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 68,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 3,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 43,
|
||||
"y": 69,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:410c759185f779797422e8f2ce55db4f:6afd0d04b6138fdd57d12681e967b48c:2abdb5d19b2754e3daa24b6ff3ed2c2c$"
|
||||
}
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 2, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 0, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 2, "y": 71, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 6, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.12-x64",
|
||||
"image": "666-high-plains.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 262, "h": 140 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 2.7 KiB |
@ -1,104 +1,119 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "666-icy-snow.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 136,
|
||||
"h": 136
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 16,
|
||||
"y": 1,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 16,
|
||||
"y": 1,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 43,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 3,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 43,
|
||||
"y": 68,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:9f47e6de00b727163c2ffb6870af9c6b:16bfd68007c3798294c7d690e075f679:fb1e8b97806dc5c60ac6adf0ae48199b$"
|
||||
}
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 2, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 0, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 2, "y": 71, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 6, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.12-x64",
|
||||
"image": "666-icy-snow.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 262, "h": 140 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.7 KiB |
@ -1,104 +1,119 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "666-jungle.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 137,
|
||||
"h": 137
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 16,
|
||||
"y": 1,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 67,
|
||||
"y": 0,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 16,
|
||||
"y": 1,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 68,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 3,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 43,
|
||||
"y": 69,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:4d8913bd65ce0b63c5354717532a7d60:39392afb8d9fb30f37b8d68b6cd368ad:c8686bcc5493911384853d54c85bfea1$"
|
||||
}
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 2, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 0, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 2, "y": 71, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 6, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.12-x64",
|
||||
"image": "666-jungle.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 262, "h": 140 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.7 KiB |
@ -1,104 +1,119 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "666-marine.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 136,
|
||||
"h": 136
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 16,
|
||||
"y": 1,
|
||||
"w": 42,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 42,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 16,
|
||||
"y": 1,
|
||||
"w": 42,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 42,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 42,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 3,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 42,
|
||||
"y": 68,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:b061fec5d665439da49159647e0a7d71:7cac8aa51d4531fbcf0f9ea9bf644452:dc240f0acbf3d56fe8729dd1f703009f$"
|
||||
}
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 2, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 0, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 2, "y": 71, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 6, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.12-x64",
|
||||
"image": "666-marine.png",
|
||||
"format": "RGBA8888",
|
||||
"size": { "w": 262, "h": 140 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 6.9 KiB |
@ -1,524 +1,118 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "666-meadow.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 234,
|
||||
"h": 234
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 91
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 3,
|
||||
"y": 4,
|
||||
"w": 78,
|
||||
"h": 87
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 78,
|
||||
"h": 87
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 91
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 3,
|
||||
"y": 4,
|
||||
"w": 78,
|
||||
"h": 87
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 78,
|
||||
"h": 87
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0023.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 91
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 3,
|
||||
"y": 4,
|
||||
"w": 78,
|
||||
"h": 87
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 78,
|
||||
"h": 87
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0024.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 91
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 3,
|
||||
"y": 4,
|
||||
"w": 78,
|
||||
"h": 87
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 78,
|
||||
"h": 87
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 91
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 7,
|
||||
"y": 3,
|
||||
"w": 70,
|
||||
"h": 87
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 87,
|
||||
"w": 70,
|
||||
"h": 87
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 91
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 7,
|
||||
"y": 3,
|
||||
"w": 70,
|
||||
"h": 87
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 87,
|
||||
"w": 70,
|
||||
"h": 87
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0021.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 91
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 7,
|
||||
"y": 3,
|
||||
"w": 70,
|
||||
"h": 87
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 87,
|
||||
"w": 70,
|
||||
"h": 87
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0022.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 91
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 7,
|
||||
"y": 3,
|
||||
"w": 70,
|
||||
"h": 87
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 87,
|
||||
"w": 70,
|
||||
"h": 87
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 91
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 11,
|
||||
"y": 2,
|
||||
"w": 63,
|
||||
"h": 87
|
||||
},
|
||||
"frame": {
|
||||
"x": 70,
|
||||
"y": 87,
|
||||
"w": 63,
|
||||
"h": 87
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 91
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 11,
|
||||
"y": 2,
|
||||
"w": 63,
|
||||
"h": 87
|
||||
},
|
||||
"frame": {
|
||||
"x": 70,
|
||||
"y": 87,
|
||||
"w": 63,
|
||||
"h": 87
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0019.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 91
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 11,
|
||||
"y": 2,
|
||||
"w": 63,
|
||||
"h": 87
|
||||
},
|
||||
"frame": {
|
||||
"x": 70,
|
||||
"y": 87,
|
||||
"w": 63,
|
||||
"h": 87
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0020.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 91
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 11,
|
||||
"y": 2,
|
||||
"w": 63,
|
||||
"h": 87
|
||||
},
|
||||
"frame": {
|
||||
"x": 70,
|
||||
"y": 87,
|
||||
"w": 63,
|
||||
"h": 87
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 91
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 14,
|
||||
"y": 1,
|
||||
"w": 57,
|
||||
"h": 87
|
||||
},
|
||||
"frame": {
|
||||
"x": 78,
|
||||
"y": 0,
|
||||
"w": 57,
|
||||
"h": 87
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 91
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 14,
|
||||
"y": 1,
|
||||
"w": 57,
|
||||
"h": 87
|
||||
},
|
||||
"frame": {
|
||||
"x": 78,
|
||||
"y": 0,
|
||||
"w": 57,
|
||||
"h": 87
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0017.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 91
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 14,
|
||||
"y": 1,
|
||||
"w": 57,
|
||||
"h": 87
|
||||
},
|
||||
"frame": {
|
||||
"x": 78,
|
||||
"y": 0,
|
||||
"w": 57,
|
||||
"h": 87
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0018.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 91
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 14,
|
||||
"y": 1,
|
||||
"w": 57,
|
||||
"h": 87
|
||||
},
|
||||
"frame": {
|
||||
"x": 78,
|
||||
"y": 0,
|
||||
"w": 57,
|
||||
"h": 87
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 91
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 5,
|
||||
"w": 84,
|
||||
"h": 86
|
||||
},
|
||||
"frame": {
|
||||
"x": 135,
|
||||
"y": 0,
|
||||
"w": 84,
|
||||
"h": 86
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 91
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 5,
|
||||
"w": 84,
|
||||
"h": 86
|
||||
},
|
||||
"frame": {
|
||||
"x": 135,
|
||||
"y": 0,
|
||||
"w": 84,
|
||||
"h": 86
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 91
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 17,
|
||||
"y": 0,
|
||||
"w": 52,
|
||||
"h": 87
|
||||
},
|
||||
"frame": {
|
||||
"x": 135,
|
||||
"y": 86,
|
||||
"w": 52,
|
||||
"h": 87
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 91
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 17,
|
||||
"y": 0,
|
||||
"w": 52,
|
||||
"h": 87
|
||||
},
|
||||
"frame": {
|
||||
"x": 135,
|
||||
"y": 86,
|
||||
"w": 52,
|
||||
"h": 87
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0015.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 91
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 17,
|
||||
"y": 0,
|
||||
"w": 52,
|
||||
"h": 87
|
||||
},
|
||||
"frame": {
|
||||
"x": 135,
|
||||
"y": 86,
|
||||
"w": 52,
|
||||
"h": 87
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0016.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 91
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 17,
|
||||
"y": 0,
|
||||
"w": 52,
|
||||
"h": 87
|
||||
},
|
||||
"frame": {
|
||||
"x": 135,
|
||||
"y": 86,
|
||||
"w": 52,
|
||||
"h": 87
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0013.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 91
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 20,
|
||||
"y": 0,
|
||||
"w": 47,
|
||||
"h": 85
|
||||
},
|
||||
"frame": {
|
||||
"x": 187,
|
||||
"y": 86,
|
||||
"w": 47,
|
||||
"h": 85
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0014.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 84,
|
||||
"h": 91
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 20,
|
||||
"y": 0,
|
||||
"w": 47,
|
||||
"h": 85
|
||||
},
|
||||
"frame": {
|
||||
"x": 187,
|
||||
"y": 86,
|
||||
"w": 47,
|
||||
"h": 85
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:49698fe6f96ff24d2fe1c7a365f79f1b:f15ccef05dfd7ebb03ac6c66ae05dcef:f8ac4807b4d6eef2256fa1b93e0f89ba$"
|
||||
}
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 2, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 0, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 2, "y": 71, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 6, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.12-x64",
|
||||
"format": "I8",
|
||||
"size": { "w": 262, "h": 140 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 2.8 KiB |
@ -1,104 +1,119 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "666-modern.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 136,
|
||||
"h": 136
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 16,
|
||||
"y": 1,
|
||||
"w": 42,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 42,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 16,
|
||||
"y": 1,
|
||||
"w": 42,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 42,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 42,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 3,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 42,
|
||||
"y": 68,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:deb5b8b4295c15b4c8718bf2ed9791d1:bbe309a34a59a4e2f74eeba5769476f4:5fc0e8f9a0750c2f3cfb5d6e7eca0d45$"
|
||||
}
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 2, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 0, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 2, "y": 71, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 6, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.12-x64",
|
||||
"image": "666-modern.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 262, "h": 140 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.7 KiB |
@ -1,104 +1,119 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "666-monsoon.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 137,
|
||||
"h": 137
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 16,
|
||||
"y": 1,
|
||||
"w": 42,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 67,
|
||||
"y": 0,
|
||||
"w": 42,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 16,
|
||||
"y": 1,
|
||||
"w": 42,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 68,
|
||||
"w": 42,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 3,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 42,
|
||||
"y": 69,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:71a24b11bc54be921b67b4376d798e05:f5358aac113e1f7af7eddf984d9692b3:637bea52b465abfb8e5a576310b4dacc$"
|
||||
}
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 2, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 0, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 2, "y": 71, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 6, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.12-x64",
|
||||
"image": "666-monsoon.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 262, "h": 140 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 2.7 KiB |
@ -1,104 +1,119 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "666-ocean.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 137,
|
||||
"h": 137
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 15,
|
||||
"y": 1,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 67,
|
||||
"y": 0,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 15,
|
||||
"y": 1,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 68,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 3,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 43,
|
||||
"y": 69,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:a1a0079c64e9d91336d227b1380cd9d2:cf159e4653ad9208c0f4633a498a6cd1:e7a0e68eab89c2013a3eb7f3b6fc0b33$"
|
||||
}
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 2, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 0, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 2, "y": 71, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 6, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.12-x64",
|
||||
"image": "666-ocean.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 262, "h": 140 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.8 KiB |
@ -1,104 +1,119 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "666-poke-ball.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 137,
|
||||
"h": 137
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 16,
|
||||
"y": 1,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 67,
|
||||
"y": 0,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 16,
|
||||
"y": 1,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 68,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 3,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 43,
|
||||
"y": 69,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:e744396a3b647429d050d678017c05ce:ec812f719dffcd362f0481d7d83c3476:8ec14f129d1691b8da504a13b661abed$"
|
||||
}
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 2, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 0, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 2, "y": 71, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 6, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.12-x64",
|
||||
"image": "666-poke-ball.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 262, "h": 140 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 2.9 KiB |
@ -1,104 +1,119 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "666-polar.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 136,
|
||||
"h": 136
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 14,
|
||||
"y": 1,
|
||||
"w": 45,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 45,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 14,
|
||||
"y": 1,
|
||||
"w": 45,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 45,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 45,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 3,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 45,
|
||||
"y": 68,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:a3b0453f2d03b9c62472f57a438298a4:81a5a3455ae0c378bdb1dbe3c3323463:eb7086e98f867c6592e4b161835da18b$"
|
||||
}
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 2, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 0, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 2, "y": 71, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 6, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.12-x64",
|
||||
"image": "666-polar.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 262, "h": 140 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.7 KiB |
@ -1,104 +1,119 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "666-river.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 136,
|
||||
"h": 136
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 15,
|
||||
"y": 1,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 15,
|
||||
"y": 1,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 43,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 3,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 43,
|
||||
"y": 68,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:2bb6d375761e6690eba12cf4d2bc99c9:9db30ec1cf68fe8c1026c243086573f3:fa23dc87fc53ba2cfa532cf440553cf5$"
|
||||
}
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 2, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 0, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 2, "y": 71, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 6, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.12-x64",
|
||||
"image": "666-river.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 262, "h": 140 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.7 KiB |
@ -1,104 +1,119 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "666-sandstorm.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 136,
|
||||
"h": 136
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 3,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 68,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 17,
|
||||
"y": 2,
|
||||
"w": 40,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 67,
|
||||
"y": 0,
|
||||
"w": 40,
|
||||
"h": 68
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 17,
|
||||
"y": 2,
|
||||
"w": 40,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 67,
|
||||
"y": 68,
|
||||
"w": 40,
|
||||
"h": 68
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:e35abed8cd9d0bbf1556fa684995d930:8d765a06a769bbf3d1639f361548cd6f:12f47e779927411662912d6094a9782d$"
|
||||
}
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 2, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 0, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 2, "y": 71, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 6, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.12-x64",
|
||||
"image": "666-sandstorm.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 262, "h": 140 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
@ -1,104 +1,119 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "666-savanna.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 137,
|
||||
"h": 137
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 16,
|
||||
"y": 1,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 67,
|
||||
"y": 0,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 16,
|
||||
"y": 1,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 68,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 3,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 43,
|
||||
"y": 69,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:1ad0c7c841409c3fd4cb50b399d6e13c:b9406b41d37bc72c57260f9a01a352c8:625a4f0dc001069326a75c6a381f93e6$"
|
||||
}
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 2, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 0, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 2, "y": 71, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 6, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.12-x64",
|
||||
"image": "666-savanna.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 262, "h": 140 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 2.8 KiB |
@ -1,104 +1,119 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "666-sun.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 137,
|
||||
"h": 137
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 15,
|
||||
"y": 1,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 67,
|
||||
"y": 0,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 15,
|
||||
"y": 1,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 68,
|
||||
"w": 43,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 3,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 43,
|
||||
"y": 69,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:1d3a140bac5951725915aa0b64d1fdc6:e322510cf8386dcc7834a05d57e5368e:8f5fdd0a698701f5391c5a3f67e303d6$"
|
||||
}
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 2, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 0, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 2, "y": 71, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 6, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.12-x64",
|
||||
"image": "666-sun.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 262, "h": 140 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 2.8 KiB |
@ -1,104 +1,119 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "666-tundra.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 136,
|
||||
"h": 136
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 13,
|
||||
"y": 1,
|
||||
"w": 46,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 46,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 13,
|
||||
"y": 1,
|
||||
"w": 46,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 46,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 46,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 3,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 46,
|
||||
"y": 68,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:40f74f8757cb0f5a2ab7b5f68ea979a0:d062f67571674668b47f6fab68361105:9779ed3adebc298af537dd64dc25fe00$"
|
||||
}
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 2, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 0, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 2, "y": 71, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 6, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.12-x64",
|
||||
"image": "666-tundra.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 262, "h": 140 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.7 KiB |
659
public/images/pokemon/exp/back/815-gigantamax.json
Normal file
@ -0,0 +1,659 @@
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 525, "y": 384, "w": 81, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 10, "y": 2, "w": 81, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 356, "y": 98, "w": 86, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 3, "w": 86, "h": 94 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 444, "y": 98, "w": 86, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 4, "w": 86, "h": 94 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 267, "y": 98, "w": 87, "h": 93 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 87, "h": 93 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 528, "y": 194, "w": 82, "h": 92 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 12, "y": 6, "w": 82, "h": 92 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 250, "y": 484, "w": 81, "h": 91 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 11, "y": 7, "w": 81, "h": 91 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 333, "y": 388, "w": 83, "h": 92 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 6, "w": 83, "h": 92 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 82, "y": 485, "w": 79, "h": 91 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 12, "y": 7, "w": 79, "h": 91 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 167, "y": 483, "w": 81, "h": 91 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 10, "y": 7, "w": 81, "h": 91 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 440, "y": 194, "w": 86, "h": 92 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 5, "w": 86, "h": 92 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 177, "y": 194, "w": 86, "h": 93 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 4, "w": 86, "h": 93 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 179, "y": 1, "w": 87, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 87, "h": 94 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0013.png",
|
||||
"frame": { "x": 267, "y": 193, "w": 85, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 2, "w": 85, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0014.png",
|
||||
"frame": { "x": 1, "y": 292, "w": 81, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 11, "y": 2, "w": 81, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0015.png",
|
||||
"frame": { "x": 86, "y": 195, "w": 83, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 2, "w": 83, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0016.png",
|
||||
"frame": { "x": 333, "y": 482, "w": 79, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 12, "y": 2, "w": 79, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0017.png",
|
||||
"frame": { "x": 525, "y": 384, "w": 81, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 10, "y": 2, "w": 81, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0018.png",
|
||||
"frame": { "x": 356, "y": 98, "w": 86, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 3, "w": 86, "h": 94 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0019.png",
|
||||
"frame": { "x": 444, "y": 98, "w": 86, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 4, "w": 86, "h": 94 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0020.png",
|
||||
"frame": { "x": 267, "y": 98, "w": 87, "h": 93 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 87, "h": 93 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0021.png",
|
||||
"frame": { "x": 528, "y": 194, "w": 82, "h": 92 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 12, "y": 6, "w": 82, "h": 92 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0022.png",
|
||||
"frame": { "x": 250, "y": 484, "w": 81, "h": 91 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 11, "y": 7, "w": 81, "h": 91 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0023.png",
|
||||
"frame": { "x": 333, "y": 388, "w": 83, "h": 92 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 6, "w": 83, "h": 92 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0024.png",
|
||||
"frame": { "x": 82, "y": 485, "w": 79, "h": 91 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 12, "y": 7, "w": 79, "h": 91 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0025.png",
|
||||
"frame": { "x": 167, "y": 483, "w": 81, "h": 91 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 10, "y": 7, "w": 81, "h": 91 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0026.png",
|
||||
"frame": { "x": 440, "y": 194, "w": 86, "h": 92 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 5, "w": 86, "h": 92 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0027.png",
|
||||
"frame": { "x": 177, "y": 194, "w": 86, "h": 93 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 4, "w": 86, "h": 93 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0028.png",
|
||||
"frame": { "x": 179, "y": 1, "w": 87, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 87, "h": 94 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0029.png",
|
||||
"frame": { "x": 267, "y": 193, "w": 85, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 2, "w": 85, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0030.png",
|
||||
"frame": { "x": 1, "y": 292, "w": 81, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 11, "y": 2, "w": 81, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0031.png",
|
||||
"frame": { "x": 86, "y": 195, "w": 83, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 2, "w": 83, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0032.png",
|
||||
"frame": { "x": 333, "y": 482, "w": 79, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 12, "y": 2, "w": 79, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0033.png",
|
||||
"frame": { "x": 525, "y": 384, "w": 81, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 10, "y": 2, "w": 81, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0034.png",
|
||||
"frame": { "x": 356, "y": 98, "w": 86, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 3, "w": 86, "h": 94 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0035.png",
|
||||
"frame": { "x": 444, "y": 98, "w": 86, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 4, "w": 86, "h": 94 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0036.png",
|
||||
"frame": { "x": 267, "y": 98, "w": 87, "h": 93 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 87, "h": 93 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0037.png",
|
||||
"frame": { "x": 528, "y": 194, "w": 82, "h": 92 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 12, "y": 6, "w": 82, "h": 92 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0038.png",
|
||||
"frame": { "x": 250, "y": 484, "w": 81, "h": 91 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 11, "y": 7, "w": 81, "h": 91 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0039.png",
|
||||
"frame": { "x": 333, "y": 388, "w": 83, "h": 92 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 6, "w": 83, "h": 92 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0040.png",
|
||||
"frame": { "x": 82, "y": 485, "w": 79, "h": 91 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 12, "y": 7, "w": 79, "h": 91 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0041.png",
|
||||
"frame": { "x": 167, "y": 483, "w": 81, "h": 91 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 10, "y": 7, "w": 81, "h": 91 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0042.png",
|
||||
"frame": { "x": 440, "y": 194, "w": 86, "h": 92 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 5, "w": 86, "h": 92 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0043.png",
|
||||
"frame": { "x": 177, "y": 194, "w": 86, "h": 93 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 4, "w": 86, "h": 93 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0044.png",
|
||||
"frame": { "x": 179, "y": 1, "w": 87, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 87, "h": 94 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0045.png",
|
||||
"frame": { "x": 267, "y": 193, "w": 85, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 2, "w": 85, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0046.png",
|
||||
"frame": { "x": 1, "y": 292, "w": 81, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 11, "y": 2, "w": 81, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0047.png",
|
||||
"frame": { "x": 86, "y": 195, "w": 83, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 2, "w": 83, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0048.png",
|
||||
"frame": { "x": 333, "y": 482, "w": 79, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 12, "y": 2, "w": 79, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0049.png",
|
||||
"frame": { "x": 84, "y": 292, "w": 81, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 10, "y": 2, "w": 81, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0050.png",
|
||||
"frame": { "x": 179, "y": 97, "w": 86, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 2, "w": 86, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0051.png",
|
||||
"frame": { "x": 444, "y": 1, "w": 86, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 2, "w": 86, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0052.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 87, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 2, "w": 87, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0053.png",
|
||||
"frame": { "x": 171, "y": 289, "w": 82, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 12, "y": 2, "w": 82, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0054.png",
|
||||
"frame": { "x": 1, "y": 389, "w": 81, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 11, "y": 4, "w": 81, "h": 94 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0055.png",
|
||||
"frame": { "x": 525, "y": 288, "w": 83, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 83, "h": 94 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0056.png",
|
||||
"frame": { "x": 1, "y": 485, "w": 79, "h": 93 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 13, "y": 7, "w": 79, "h": 93 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0057.png",
|
||||
"frame": { "x": 84, "y": 389, "w": 81, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 12, "y": 6, "w": 81, "h": 94 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0058.png",
|
||||
"frame": { "x": 356, "y": 1, "w": 86, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 10, "y": 4, "w": 86, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0059.png",
|
||||
"frame": { "x": 268, "y": 1, "w": 86, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 12, "y": 3, "w": 86, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0060.png",
|
||||
"frame": { "x": 354, "y": 194, "w": 84, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 15, "y": 2, "w": 84, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0061.png",
|
||||
"frame": { "x": 255, "y": 290, "w": 82, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 18, "y": 1, "w": 82, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0062.png",
|
||||
"frame": { "x": 423, "y": 385, "w": 81, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 15, "y": 1, "w": 81, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0063.png",
|
||||
"frame": { "x": 1, "y": 195, "w": 83, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 1, "w": 83, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0064.png",
|
||||
"frame": { "x": 506, "y": 481, "w": 80, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 10, "y": 0, "w": 80, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0065.png",
|
||||
"frame": { "x": 250, "y": 387, "w": 81, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 1, "w": 81, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0066.png",
|
||||
"frame": { "x": 1, "y": 98, "w": 86, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 1, "w": 86, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0067.png",
|
||||
"frame": { "x": 89, "y": 98, "w": 86, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 1, "w": 86, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0068.png",
|
||||
"frame": { "x": 90, "y": 1, "w": 87, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 3, "w": 87, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0069.png",
|
||||
"frame": { "x": 339, "y": 291, "w": 82, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 10, "y": 5, "w": 82, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0070.png",
|
||||
"frame": { "x": 167, "y": 386, "w": 81, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 11, "y": 4, "w": 81, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0071.png",
|
||||
"frame": { "x": 440, "y": 288, "w": 83, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 83, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0072.png",
|
||||
"frame": { "x": 414, "y": 482, "w": 79, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 12, "y": 2, "w": 79, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 100 },
|
||||
"duration": 100
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.13-x64",
|
||||
"image": "815-gigantamax.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 611, "h": 579 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
BIN
public/images/pokemon/exp/back/815-gigantamax.png
Normal file
After Width: | Height: | Size: 33 KiB |
821
public/images/pokemon/exp/back/839-gigantamax.json
Normal file
@ -0,0 +1,821 @@
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 238, "y": 282, "w": 77, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 20, "y": 0, "w": 77, "h": 96 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 470, "y": 377, "w": 76, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 19, "y": 0, "w": 76, "h": 96 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 546, "y": 377, "w": 76, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 18, "y": 0, "w": 76, "h": 96 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 469, "y": 473, "w": 75, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 18, "y": 0, "w": 75, "h": 96 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 544, "y": 473, "w": 75, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 18, "y": 0, "w": 75, "h": 96 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 154, "y": 472, "w": 76, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 20, "y": 1, "w": 76, "h": 95 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 0, "y": 566, "w": 75, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 1, "w": 75, "h": 95 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 393, "y": 376, "w": 77, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 1, "w": 77, "h": 95 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 414, "y": 190, "w": 78, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 23, "y": 1, "w": 78, "h": 95 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 492, "y": 191, "w": 78, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 24, "y": 1, "w": 78, "h": 95 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 159, "y": 283, "w": 78, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 25, "y": 2, "w": 78, "h": 94 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 158, "y": 189, "w": 80, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 24, "y": 2, "w": 80, "h": 94 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0013.png",
|
||||
"frame": { "x": 255, "y": 188, "w": 80, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 24, "y": 2, "w": 80, "h": 94 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0014.png",
|
||||
"frame": { "x": 173, "y": 95, "w": 82, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 23, "y": 2, "w": 82, "h": 94 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0015.png",
|
||||
"frame": { "x": 90, "y": 93, "w": 83, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 23, "y": 2, "w": 83, "h": 94 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0016.png",
|
||||
"frame": { "x": 350, "y": 95, "w": 82, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 23, "y": 2, "w": 82, "h": 94 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0017.png",
|
||||
"frame": { "x": 524, "y": 0, "w": 83, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 21, "y": 1, "w": 83, "h": 95 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0018.png",
|
||||
"frame": { "x": 268, "y": 92, "w": 82, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 21, "y": 0, "w": 82, "h": 96 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0019.png",
|
||||
"frame": { "x": 513, "y": 95, "w": 80, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 21, "y": 0, "w": 80, "h": 96 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0020.png",
|
||||
"frame": { "x": 0, "y": 185, "w": 79, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 20, "y": 0, "w": 79, "h": 96 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0021.png",
|
||||
"frame": { "x": 238, "y": 282, "w": 77, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 20, "y": 0, "w": 77, "h": 96 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0022.png",
|
||||
"frame": { "x": 470, "y": 377, "w": 76, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 19, "y": 0, "w": 76, "h": 96 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0023.png",
|
||||
"frame": { "x": 546, "y": 377, "w": 76, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 18, "y": 0, "w": 76, "h": 96 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0024.png",
|
||||
"frame": { "x": 469, "y": 473, "w": 75, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 18, "y": 0, "w": 75, "h": 96 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0025.png",
|
||||
"frame": { "x": 544, "y": 473, "w": 75, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 18, "y": 0, "w": 75, "h": 96 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0026.png",
|
||||
"frame": { "x": 154, "y": 472, "w": 76, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 20, "y": 1, "w": 76, "h": 95 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0027.png",
|
||||
"frame": { "x": 0, "y": 566, "w": 75, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 1, "w": 75, "h": 95 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0028.png",
|
||||
"frame": { "x": 393, "y": 376, "w": 77, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 1, "w": 77, "h": 95 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0029.png",
|
||||
"frame": { "x": 414, "y": 190, "w": 78, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 23, "y": 1, "w": 78, "h": 95 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0030.png",
|
||||
"frame": { "x": 492, "y": 191, "w": 78, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 24, "y": 1, "w": 78, "h": 95 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0031.png",
|
||||
"frame": { "x": 159, "y": 283, "w": 78, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 25, "y": 2, "w": 78, "h": 94 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0032.png",
|
||||
"frame": { "x": 158, "y": 189, "w": 80, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 24, "y": 2, "w": 80, "h": 94 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0033.png",
|
||||
"frame": { "x": 255, "y": 188, "w": 80, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 24, "y": 2, "w": 80, "h": 94 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0034.png",
|
||||
"frame": { "x": 173, "y": 95, "w": 82, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 23, "y": 2, "w": 82, "h": 94 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0035.png",
|
||||
"frame": { "x": 90, "y": 93, "w": 83, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 23, "y": 2, "w": 83, "h": 94 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0036.png",
|
||||
"frame": { "x": 350, "y": 95, "w": 82, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 23, "y": 2, "w": 82, "h": 94 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0037.png",
|
||||
"frame": { "x": 524, "y": 0, "w": 83, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 21, "y": 1, "w": 83, "h": 95 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0038.png",
|
||||
"frame": { "x": 268, "y": 92, "w": 82, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 21, "y": 0, "w": 82, "h": 96 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0039.png",
|
||||
"frame": { "x": 513, "y": 95, "w": 80, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 21, "y": 0, "w": 80, "h": 96 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0040.png",
|
||||
"frame": { "x": 0, "y": 185, "w": 79, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 20, "y": 0, "w": 79, "h": 96 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0041.png",
|
||||
"frame": { "x": 238, "y": 282, "w": 77, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 20, "y": 0, "w": 77, "h": 96 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0042.png",
|
||||
"frame": { "x": 470, "y": 377, "w": 76, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 19, "y": 0, "w": 76, "h": 96 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0043.png",
|
||||
"frame": { "x": 546, "y": 377, "w": 76, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 18, "y": 0, "w": 76, "h": 96 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0044.png",
|
||||
"frame": { "x": 469, "y": 473, "w": 75, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 18, "y": 0, "w": 75, "h": 96 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0045.png",
|
||||
"frame": { "x": 544, "y": 473, "w": 75, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 18, "y": 0, "w": 75, "h": 96 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0046.png",
|
||||
"frame": { "x": 154, "y": 472, "w": 76, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 20, "y": 1, "w": 76, "h": 95 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0047.png",
|
||||
"frame": { "x": 0, "y": 566, "w": 75, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 1, "w": 75, "h": 95 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0048.png",
|
||||
"frame": { "x": 393, "y": 376, "w": 77, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 1, "w": 77, "h": 95 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0049.png",
|
||||
"frame": { "x": 414, "y": 190, "w": 78, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 23, "y": 1, "w": 78, "h": 95 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0050.png",
|
||||
"frame": { "x": 492, "y": 191, "w": 78, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 24, "y": 1, "w": 78, "h": 95 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0051.png",
|
||||
"frame": { "x": 159, "y": 283, "w": 78, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 25, "y": 2, "w": 78, "h": 94 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0052.png",
|
||||
"frame": { "x": 158, "y": 189, "w": 80, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 24, "y": 2, "w": 80, "h": 94 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0053.png",
|
||||
"frame": { "x": 255, "y": 188, "w": 80, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 24, "y": 2, "w": 80, "h": 94 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0054.png",
|
||||
"frame": { "x": 173, "y": 95, "w": 82, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 23, "y": 2, "w": 82, "h": 94 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0055.png",
|
||||
"frame": { "x": 90, "y": 93, "w": 83, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 23, "y": 2, "w": 83, "h": 94 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0056.png",
|
||||
"frame": { "x": 350, "y": 95, "w": 82, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 23, "y": 2, "w": 82, "h": 94 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0057.png",
|
||||
"frame": { "x": 524, "y": 0, "w": 83, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 21, "y": 1, "w": 83, "h": 95 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0058.png",
|
||||
"frame": { "x": 268, "y": 92, "w": 82, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 21, "y": 0, "w": 82, "h": 96 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0059.png",
|
||||
"frame": { "x": 513, "y": 95, "w": 80, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 21, "y": 0, "w": 80, "h": 96 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0060.png",
|
||||
"frame": { "x": 0, "y": 185, "w": 79, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 20, "y": 0, "w": 79, "h": 96 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0061.png",
|
||||
"frame": { "x": 238, "y": 282, "w": 77, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 20, "y": 0, "w": 77, "h": 96 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0062.png",
|
||||
"frame": { "x": 79, "y": 187, "w": 79, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 17, "y": 0, "w": 79, "h": 96 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0063.png",
|
||||
"frame": { "x": 432, "y": 95, "w": 81, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 13, "y": 1, "w": 81, "h": 95 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0064.png",
|
||||
"frame": { "x": 441, "y": 0, "w": 83, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 1, "w": 83, "h": 95 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0065.png",
|
||||
"frame": { "x": 356, "y": 0, "w": 85, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 1, "w": 85, "h": 95 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0066.png",
|
||||
"frame": { "x": 180, "y": 0, "w": 88, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 1, "w": 88, "h": 95 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0067.png",
|
||||
"frame": { "x": 0, "y": 0, "w": 90, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 90, "h": 94 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0068.png",
|
||||
"frame": { "x": 90, "y": 0, "w": 90, "h": 93 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 3, "w": 90, "h": 93 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0069.png",
|
||||
"frame": { "x": 268, "y": 0, "w": 88, "h": 92 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 4, "w": 88, "h": 92 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0070.png",
|
||||
"frame": { "x": 0, "y": 94, "w": 85, "h": 91 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 13, "y": 5, "w": 85, "h": 91 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0071.png",
|
||||
"frame": { "x": 77, "y": 283, "w": 82, "h": 90 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 20, "y": 6, "w": 82, "h": 90 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0072.png",
|
||||
"frame": { "x": 397, "y": 285, "w": 81, "h": 91 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 5, "w": 81, "h": 91 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0073.png",
|
||||
"frame": { "x": 232, "y": 378, "w": 81, "h": 90 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 21, "y": 6, "w": 81, "h": 90 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0074.png",
|
||||
"frame": { "x": 315, "y": 283, "w": 82, "h": 90 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 20, "y": 6, "w": 82, "h": 90 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0075.png",
|
||||
"frame": { "x": 478, "y": 286, "w": 81, "h": 91 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 22, "y": 5, "w": 81, "h": 91 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0076.png",
|
||||
"frame": { "x": 313, "y": 467, "w": 79, "h": 92 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 24, "y": 4, "w": 79, "h": 92 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0077.png",
|
||||
"frame": { "x": 335, "y": 189, "w": 79, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 23, "y": 2, "w": 79, "h": 94 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0078.png",
|
||||
"frame": { "x": 315, "y": 373, "w": 78, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 24, "y": 2, "w": 78, "h": 94 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0079.png",
|
||||
"frame": { "x": 77, "y": 373, "w": 78, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 24, "y": 2, "w": 78, "h": 94 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0080.png",
|
||||
"frame": { "x": 77, "y": 467, "w": 77, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 24, "y": 2, "w": 77, "h": 94 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0081.png",
|
||||
"frame": { "x": 232, "y": 468, "w": 77, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 24, "y": 2, "w": 77, "h": 94 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0082.png",
|
||||
"frame": { "x": 392, "y": 471, "w": 77, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 24, "y": 2, "w": 77, "h": 94 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0083.png",
|
||||
"frame": { "x": 309, "y": 559, "w": 77, "h": 93 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 23, "y": 3, "w": 77, "h": 93 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0084.png",
|
||||
"frame": { "x": 386, "y": 565, "w": 77, "h": 93 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 23, "y": 3, "w": 77, "h": 93 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0085.png",
|
||||
"frame": { "x": 77, "y": 561, "w": 77, "h": 93 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 23, "y": 3, "w": 77, "h": 93 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0086.png",
|
||||
"frame": { "x": 230, "y": 562, "w": 77, "h": 93 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 23, "y": 3, "w": 77, "h": 93 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0087.png",
|
||||
"frame": { "x": 0, "y": 472, "w": 77, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 21, "y": 2, "w": 77, "h": 94 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0088.png",
|
||||
"frame": { "x": 0, "y": 377, "w": 77, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 21, "y": 1, "w": 77, "h": 95 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0089.png",
|
||||
"frame": { "x": 155, "y": 377, "w": 77, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 21, "y": 1, "w": 77, "h": 95 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0090.png",
|
||||
"frame": { "x": 0, "y": 281, "w": 77, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 20, "y": 0, "w": 77, "h": 96 },
|
||||
"sourceSize": { "w": 106, "h": 96 },
|
||||
"duration": 100
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.13-x64",
|
||||
"image": "839-gigantamax.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 622, "h": 661 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
BIN
public/images/pokemon/exp/back/839-gigantamax.png
Normal file
After Width: | Height: | Size: 49 KiB |
1478
public/images/pokemon/exp/back/shiny/569-gigantamax.json
Normal file
BIN
public/images/pokemon/exp/back/shiny/569-gigantamax.png
Normal file
After Width: | Height: | Size: 9.0 KiB |
@ -1,104 +1,119 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "666-archipelago.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 137,
|
||||
"h": 137
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 16,
|
||||
"y": 1,
|
||||
"w": 42,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 67,
|
||||
"y": 0,
|
||||
"w": 42,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 16,
|
||||
"y": 1,
|
||||
"w": 42,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 68,
|
||||
"w": 42,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 71
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 3,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 42,
|
||||
"y": 69,
|
||||
"w": 67,
|
||||
"h": 68
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:d3b3934e858033f670ae2a24ec4d347a:f014942f9212da6fadbc8a0c94f2dc11:80cdb6dd219378a41ccf5c2acc7e7786$"
|
||||
}
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 2, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 0, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 2, "y": 71, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 6, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 124, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 140, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 71, "y": 71, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 3, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 71, "y": 2, "w": 67, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 67, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 209, "y": 2, "w": 51, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 51, "h": 67 },
|
||||
"sourceSize": { "w": 67, "h": 73 },
|
||||
"duration": 110
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.12-x64",
|
||||
"image": "666-archipelago.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 262, "h": 140 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.7 KiB |