Merge branch 'beta' into wild-ghost-goo

This commit is contained in:
Madmadness65 2025-03-03 15:21:33 -06:00 committed by GitHub
commit a21bb39a82
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1612 changed files with 155318 additions and 167114 deletions

View File

@ -156,7 +156,7 @@ module.exports = {
path: '^(src)',
pathNot: [
'[.](?:spec|test|setup|script)[.](?:js|mjs|cjs|jsx|ts|mts|cts|tsx)$',
'src/test'
'./test'
]
},
to: {

12
.editorconfig Normal file
View File

@ -0,0 +1,12 @@
# EditorConfig is awesome: https://EditorConfig.org
# top-most EditorConfig file
root = true
[src/*.{js,ts}]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

17
.github/CODEOWNERS vendored
View File

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

1
.nvmrc Normal file
View File

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

View File

@ -343,92 +343,94 @@ In addition to the lists below, please check [the PokéRogue wiki](https://wiki.
# 💻 Development
## Server Owner/Administrator
## Server Developers
- pancakes aka patapancakes
## Senior Developers
- Walker
- NightKev
- Moka
- Temp aka Tempo-anon
- Madmadness65
## Developers
## Current and former Development Team members
- bennybroseph
- Brain Frog
- CodeTappert
- Dakurei
- flx-sta
- innerthunder
- frutescens
- Greenlamp
- ImperialSympathizer
- innerthunder
- KimJeongSun
- Madmadness65
- Moka
- Navori
- NightKev
- Opaquer
- OrangeRed
- Sam aka Flashfyre (initial developer, started PokéRogue)
- sirzento
- SN34KZ
- Swain aka torranx
## Junior Developers
- KimJeongSun
- ImperialSympathizer
- Temp aka Tempo-anon
- Walker
- Xavion
## Bug/Issue Managers
- Snailman
- Daleks
- Lily
- PigeonBar
- Snailman
## Past Contributors
- Fontbane
- sodaMelon
- schmidtc1
- shayebeadling
## Other Code Contributors
- Admiral-Billy
- allen925
- arColm
- Arxalc
- AsdarDevelops
- Corrade
- DustinLin
- lucfd
- madibye
- ElizaAlex
- EmberCM
- Mewtwo2387
- EmoUsedHM01
- EvasiveAce
- Fontbane
- francktrouillez
- FredeX
- geeilhan
- happinyz
- hayuna
- sirzento
- ReneGV
- mattrossdev
- zacharied
- NxKarim
- td76099
- Xiaphear
- InfernoVulpix
- j-diefenbach
- jaimefd
- EvasiveAce
- EmoUsedHM01
- francktrouillez
- JakubHanko
- FredeX
- PigeonBar
- prime-dialga
- rnicar245
- rationality6
- Neverblade
- Corrade
- Admiral-Billy
- okimin
- Arxalc
- PrabbyDD
- JonStudders
- karl-police
- prateau
- meepen
- arColm
- allen925
- InfernoVulpix
- snoozbuster
- zaccie
- happinyz
- PyGaVS
- lucfd
- Lugiadrien
- madibye
- mattrossdev
- mcmontag
- ElizaAlex
- AsdarDevelops
- Vassiat
- meepen
- Mewtwo2387
- muscode
- Neverblade
- NxKarim
- okimin
- PigeonBar
- PrabbyDD
- prateau
- prime-dialga
- PyGaVS
- rationality6
- RedstonewolfX
- Sam/Flashfyre (initial developer, started PokéRogue)
- Greenlamp
- bennybroseph
- OrangeRed
- Dakurei
- Brain Frog
- ReneGV
- rnicar245
- schmidtc1
- shayebeadling
- snoozbuster
- sodaMelon
- td76099
- Vassiat
- Xiaphear
- zaccie
- zacharied
- Zé Ricardo
# 🌎 Translation
@ -615,6 +617,6 @@ In addition to the lists below, please check [the PokéRogue wiki](https://wiki.
- roi
## External Tools
- Ydarissep (RogueDex)
- Ydarissep (creator of the now defunct "Yda's Dex")
- Admiral-Billy (Offline App - Desktop)
- Red aka StonedModder (iOS App)

View File

@ -84,19 +84,19 @@ async function runInteractive() {
let description;
switch (type) {
case "move":
dir = path.join(__dirname, "src", "test", "moves");
dir = path.join(__dirname, "test", "moves");
description = `Moves - ${formattedName}`;
break;
case "ability":
dir = path.join(__dirname, "src", "test", "abilities");
dir = path.join(__dirname, "test", "abilities");
description = `Abilities - ${formattedName}`;
break;
case "item":
dir = path.join(__dirname, "src", "test", "items");
dir = path.join(__dirname, "test", "items");
description = `Items - ${formattedName}`;
break;
case "mystery encounter":
dir = path.join(__dirname, "src", "test", "mystery-encounter", "encounters");
dir = path.join(__dirname, "test", "mystery-encounter", "encounters");
description = `Mystery Encounter - ${formattedName}`;
break;
default:
@ -108,7 +108,7 @@ async function runInteractive() {
const content = `import { Abilities } from "#enums/abilities";
import { Moves } from "#enums/moves";
import { Species } from "#enums/species";
import GameManager from "#test/utils/gameManager";
import GameManager from "#test/testUtils/gameManager";
import Phaser from "phaser";
import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest";

View File

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

View File

@ -5,7 +5,8 @@ import importX from 'eslint-plugin-import-x';
export default [
{
files: ["src/**/*.{ts,tsx,js,jsx}"],
name: "eslint-config",
files: ["src/**/*.{ts,tsx,js,jsx}", "test/**/*.{ts,tsx,js,jsx}"],
ignores: ["dist/*", "build/*", "coverage/*", "public/*", ".github/*", "node_modules/*", ".vscode/*"],
languageOptions: {
parser: parser
@ -46,6 +47,24 @@ export default [
"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
}
},
{
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/
}
}
]

View File

@ -164,13 +164,13 @@ input:-internal-autofill-selected {
}
/* Show cycle buttons only on STARTER_SELECT and on touch configuration panel */
#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT']) #apadOpenFilters,
#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT'], [data-ui-mode='RUN_INFO']) #apadCycleForm,
#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT'], [data-ui-mode='RUN_INFO']) #apadCycleShiny,
#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT'], [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='RUN_INFO']) #apadCycleAbility,
#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT']) #apadCycleGender,
#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT']) #apadCycleVariant {
#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT'], [data-ui-mode='POKEDEX_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;
}

View File

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

439
package-lock.json generated
View File

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

View File

@ -1,7 +1,7 @@
{
"name": "pokemon-rogue-battle",
"private": true,
"version": "1.3.0",
"version": "1.7.6",
"type": "module",
"scripts": {
"start": "vite",
@ -20,7 +20,10 @@
"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"
"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",
@ -30,7 +33,7 @@
"@types/node": "^20.12.13",
"@typescript-eslint/eslint-plugin": "^8.0.0-alpha.54",
"@typescript-eslint/parser": "^8.0.0-alpha.54",
"@vitest/coverage-istanbul": "^2.0.4",
"@vitest/coverage-istanbul": "^2.1.9",
"dependency-cruiser": "^16.3.10",
"eslint": "^9.7.0",
"eslint-plugin-import-x": "^4.2.1",
@ -42,9 +45,9 @@
"typedoc": "^0.26.4",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.0-alpha.54",
"vite": "^5.4.8",
"vite": "^5.4.14",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.0.4",
"vitest": "^2.1.9",
"vitest-canvas-mock": "^0.3.3"
},
"dependencies": {
@ -61,11 +64,5 @@
},
"engines": {
"node": ">=20.0.0"
},
"imports": {
"#enums/*": "./enums/*",
"#app": "./src/main.js",
"#app/*": "./src/*",
"#test/*": "./src/test/*"
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

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

View File

@ -201,6 +201,8 @@
"6211",
"6215",
"6215",
"6215f",
"6215f",
"65-mega",
"65-mega",
"650",
@ -259,10 +261,10 @@
"666-fancy",
"666-garden",
"666-garden",
"666-high",
"666-high",
"666-icy",
"666-icy",
"666-high-plains",
"666-high-plains",
"666-icy-snow",
"666-icy-snow",
"666-jungle",
"666-jungle",
"666-marine",
@ -275,8 +277,8 @@
"666-monsoon",
"666-ocean",
"666-ocean",
"666-poke",
"666-poke",
"666-poke-ball",
"666-poke-ball",
"666-polar",
"666-polar",
"666-river",
@ -291,8 +293,8 @@
"666-tundra",
"667",
"667",
"668-female",
"668-female",
"668f",
"668f",
"668",
"668",
"669-blue",
@ -337,8 +339,7 @@
"6724",
"673",
"673",
"674",
"674",
"675",
"675",
"676",
@ -381,16 +382,14 @@
"692",
"693",
"693",
"694",
"694",
"695",
"695",
"696",
"696",
"697",
"697",
"698",
"698",
"699",
"699",
"700",
@ -399,18 +398,13 @@
"701",
"702",
"702",
"703",
"703",
"704",
"704",
"705",
"705",
"706",
"706",
"707",
"707",
"708",
"708",
"709",
"709",
"710",
@ -421,8 +415,6 @@
"712",
"713",
"713",
"714",
"714",
"715",
"715",
"716-active",
@ -431,16 +423,10 @@
"716-neutral",
"717",
"717",
"718-10",
"718-10",
"718-complete",
"718-complete",
"718",
"718",
"719-mega",
"719-mega",
"719",
"719",
"720-unbound",
"720-unbound",
"720",
@ -1333,6 +1319,8 @@
"6211b",
"6215b",
"6215b",
"6215bf",
"6215bf",
"65b-mega",
"65b-mega",
"650b",
@ -1391,10 +1379,10 @@
"666b-fancy",
"666b-garden",
"666b-garden",
"666b-high",
"666b-high",
"666b-icy",
"666b-icy",
"666b-high-plains",
"666b-high-plains",
"666b-icy-snow",
"666b-icy-snow",
"666b-jungle",
"666b-jungle",
"666b-marine",
@ -1407,8 +1395,8 @@
"666b-monsoon",
"666b-ocean",
"666b-ocean",
"666b-poke",
"666b-poke",
"666b-poke-ball",
"666b-poke-ball",
"666b-polar",
"666b-polar",
"666b-river",
@ -1423,8 +1411,8 @@
"666b-tundra",
"667b",
"667b",
"668b-female",
"668b-female",
"668bf",
"668bf",
"668b",
"668b",
"669b-blue",
@ -1469,8 +1457,7 @@
"6724b",
"673b",
"673b",
"674b",
"674b",
"675b",
"675b",
"676b",
@ -1513,16 +1500,14 @@
"692b",
"693b",
"693b",
"694b",
"694b",
"695b",
"695b",
"696b",
"696b",
"697b",
"697b",
"698b",
"698b",
"699b",
"699b",
"700b",
@ -1531,18 +1516,13 @@
"701b",
"702b",
"702b",
"703b",
"703b",
"704b",
"704b",
"705b",
"705b",
"706b",
"706b",
"707b",
"707b",
"708b",
"708b",
"709b",
"709b",
"710b",
@ -1553,8 +1533,6 @@
"712b",
"713b",
"713b",
"714b",
"714b",
"715b",
"715b",
"716b-active",
@ -1563,16 +1541,10 @@
"716b-neutral",
"717b",
"717b",
"718b-10",
"718b-10",
"718b-complete",
"718b-complete",
"718b",
"718b",
"719b-mega",
"719b-mega",
"719b",
"719b",
"720b-unbound",
"720b-unbound",
"720b",
@ -2467,6 +2439,8 @@
"6211sb",
"6215sb",
"6215sb",
"6215sbf",
"6215sbf",
"65sb-mega",
"65sb-mega",
"650sb",
@ -2525,10 +2499,10 @@
"666sb-fancy",
"666sb-garden",
"666sb-garden",
"666sb-high",
"666sb-high",
"666sb-icy",
"666sb-icy",
"666sb-high-plains",
"666sb-high-plains",
"666sb-icy-snow",
"666sb-icy-snow",
"666sb-jungle",
"666sb-jungle",
"666sb-marine",
@ -2541,8 +2515,8 @@
"666sb-monsoon",
"666sb-ocean",
"666sb-ocean",
"666sb-poke",
"666sb-poke",
"666sb-poke-ball",
"666sb-poke-ball",
"666sb-polar",
"666sb-polar",
"666sb-river",
@ -2559,6 +2533,8 @@
"667sb",
"668sb",
"668sb",
"668sbf",
"668sbf",
"669sb-blue",
"669sb-blue",
"669sb-orange",
@ -2601,8 +2577,7 @@
"6724sb",
"673sb",
"673sb",
"674sb",
"674sb",
"675sb",
"675sb",
"676sb",
@ -2645,16 +2620,14 @@
"692sb",
"693sb",
"693sb",
"694sb",
"694sb",
"695sb",
"695sb",
"696sb",
"696sb",
"697sb",
"697sb",
"698sb",
"698sb",
"699sb",
"699sb",
"700sb",
@ -2663,18 +2636,13 @@
"701sb",
"702sb",
"702sb",
"703sb",
"703sb",
"704sb",
"704sb",
"705sb",
"705sb",
"706sb",
"706sb",
"707sb",
"707sb",
"708sb",
"708sb",
"709sb",
"709sb",
"710sb",
@ -2685,8 +2653,6 @@
"712sb",
"713sb",
"713sb",
"714sb",
"714sb",
"715sb",
"715sb",
"716sb-active",
@ -2695,16 +2661,10 @@
"716sb-neutral",
"717sb",
"717sb",
"718sb-10",
"718sb-10",
"718sb-complete",
"718sb-complete",
"718sb",
"718sb",
"719sb-mega",
"719sb-mega",
"719sb",
"719sb",
"720sb-unbound",
"720sb-unbound",
"720sb",
@ -3604,6 +3564,8 @@
"6211s",
"6215s",
"6215s",
"6215sf",
"6215sf",
"65s-mega",
"65s-mega",
"650s",
@ -3662,10 +3624,10 @@
"666s-fancy",
"666s-garden",
"666s-garden",
"666s-high",
"666s-high",
"666s-icy",
"666s-icy",
"666s-high-plains",
"666s-high-plains",
"666s-icy-snow",
"666s-icy-snow",
"666s-jungle",
"666s-jungle",
"666s-marine",
@ -3678,8 +3640,8 @@
"666s-monsoon",
"666s-ocean",
"666s-ocean",
"666s-poke",
"666s-poke",
"666s-poke-ball",
"666s-poke-ball",
"666s-polar",
"666s-polar",
"666s-river",
@ -3694,8 +3656,8 @@
"666s-tundra",
"667s",
"667s",
"668s-female",
"668s-female",
"668sf",
"668sf",
"668s",
"668s",
"669s-blue",
@ -3740,8 +3702,7 @@
"6724s",
"673s",
"673s",
"674s",
"674s",
"675s",
"675s",
"676s",
@ -3784,16 +3745,14 @@
"692s",
"693s",
"693s",
"694s",
"694s",
"695s",
"695s",
"696s",
"696s",
"697s",
"697s",
"698s",
"698s",
"699s",
"699s",
"700s",
@ -3802,18 +3761,13 @@
"701s",
"702s",
"702s",
"703s",
"703s",
"704s",
"704s",
"705s",
"705s",
"706s",
"706s",
"707s",
"707s",
"708s",
"708s",
"709s",
"709s",
"710s",
@ -3824,8 +3778,6 @@
"712s",
"713s",
"713s",
"714s",
"714s",
"715s",
"715s",
"716s-active",
@ -3834,16 +3786,10 @@
"716s-neutral",
"717s",
"717s",
"718s-10",
"718s-10",
"718s-complete",
"718s-complete",
"718s",
"718s",
"719s-mega",
"719s-mega",
"719s",
"719s",
"720s-unbound",
"720s-unbound",
"720s",
@ -4587,6 +4533,7 @@
"475-mega_3",
"475-mega_3",
"6215",
"6215f",
"653",
"654",
"6549",
@ -4598,19 +4545,15 @@
"666-archipelago",
"666-continental",
"666-elegant",
"666-fancy_2",
"666-fancy_2",
"666-fancy_3",
"666-fancy_3",
"666-fancy",
"666-fancy",
"666-garden",
"666-high",
"666-icy",
"666-icy-snow",
"666-jungle",
"666-marine",
"666-meadow_2",
"666-meadow_2",
"666-meadow_3",
"666-meadow_3",
"666-meadow",
"666-meadow",
"666-modern",
"666-monsoon",
"666-ocean",
@ -4619,8 +4562,6 @@
"666-poke",
"666-polar",
"666-river",
"666-river_2",
"666-river_2",
"666-sandstorm",
"666-savanna",
"666-sun",
@ -4641,7 +4582,6 @@
"705_3",
"705_3",
"706",
"708",
"709",
"710",
"711",
@ -4826,6 +4766,10 @@
"150b-mega",
"181b-mega",
"212b-mega",
"248b-mega",
"248b-mega",
"257b-mega",
"257b-mega",
"282b-mega",
"3b-mega_2",
"3b-mega_2",
@ -4856,6 +4800,7 @@
"475b-mega_3",
"475b-mega_3",
"6215b",
"6215bf",
"653b",
"654b",
"6549b",
@ -4866,86 +4811,46 @@
"665b",
"665_2b",
"665_2b",
"666b-archipelago_2",
"666b-archipelago_2",
"666b-archipelago_3",
"666b-archipelago_3",
"666b-continental_2",
"666b-continental_2",
"666b-continental_3",
"666b-continental_3",
"666b-elegant_2",
"666b-elegant_2",
"666b-elegant_3",
"666b-elegant_3",
"666b-fancy_2",
"666b-fancy_2",
"666b-fancy_3",
"666b-fancy_3",
"666b-garden_2",
"666b-garden_2",
"666b-garden_3",
"666b-garden_3",
"666b-high",
"666b-high",
"666b-high",
"666b-high",
"666b-icy",
"666b-icy",
"666b-icy",
"666b-icy",
"666b-jungle_2",
"666b-jungle_2",
"666b-jungle_3",
"666b-jungle_3",
"666b-marine_2",
"666b-marine_2",
"666b-marine_3",
"666b-marine_3",
"666b-meadow_2",
"666b-meadow_2",
"666b-meadow_3",
"666b-meadow_3",
"666b-modern_2",
"666b-modern_2",
"666b-modern_3",
"666b-modern_3",
"666b-monsoon_2",
"666b-monsoon_2",
"666b-monsoon_3",
"666b-monsoon_3",
"666b-ocean_2",
"666b-ocean_2",
"666b-ocean_3",
"666b-ocean_3",
"666b-poke",
"666b-poke",
"666b-poke",
"666b-poke",
"666b-polar_2",
"666b-polar_2",
"666b-polar_3",
"666b-polar_3",
"666b-river_2",
"666b-river_2",
"666b-river_3",
"666b-river_3",
"666b-sandstorm_2",
"666b-sandstorm_2",
"666b-sandstorm_3",
"666b-sandstorm_3",
"666b-savanna_2",
"666b-savanna_2",
"666b-savanna_3",
"666b-savanna_3",
"666b-sun_2",
"666b-sun_2",
"666b-sun_3",
"666b-sun_3",
"666b-tundra_2",
"666b-tundra_2",
"666b-tundra_3",
"666b-tundra_3",
"666b-archipelago",
"666b-archipelago",
"666b-continental",
"666b-continental",
"666b-elegant",
"666b-elegant",
"666b-fancy",
"666b-fancy",
"666b-garden",
"666b-garden",
"666b-high-plains",
"666b-high-plains",
"666b-icy-snow",
"666b-icy-snow",
"666b-jungle",
"666b-jungle",
"666b-marine",
"666b-marine",
"666b-meadow",
"666b-meadow",
"666b-modern",
"666b-modern",
"666b-monsoon",
"666b-monsoon",
"666b-ocean",
"666b-ocean",
"666b-poke-ball",
"666b-poke-ball",
"666b-polar",
"666b-polar",
"666b-river",
"666b-river",
"666b-sandstorm",
"666b-sandstorm",
"666b-savanna",
"666b-savanna",
"666b-sun",
"666b-sun",
"666b-tundra",
"666b-tundra",
"6705b",
"6706_2b",
"6706_2b",
@ -4957,7 +4862,6 @@
"704b",
"705b",
"706b",
"708b",
"709b",
"710b",
"711b",

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.1 KiB

After

Width:  |  Height:  |  Size: 8.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 34 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 65 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 14 KiB

View File

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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 515 B

After

Width:  |  Height:  |  Size: 528 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 948 B

After

Width:  |  Height:  |  Size: 982 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 970 B

After

Width:  |  Height:  |  Size: 1010 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 952 B

After

Width:  |  Height:  |  Size: 1005 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 898 B

View File

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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 450 B

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 475 B

After

Width:  |  Height:  |  Size: 11 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 548 B

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 490 B

After

Width:  |  Height:  |  Size: 2.3 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 866 B

After

Width:  |  Height:  |  Size: 59 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 478 B

After

Width:  |  Height:  |  Size: 8.8 KiB

View File

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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 752 B

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 737 B

After

Width:  |  Height:  |  Size: 14 KiB

View File

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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 37 KiB

View File

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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 817 B

After

Width:  |  Height:  |  Size: 9.6 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

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