Merge branch 'main' into EmoUsedHM01-patch-1

This commit is contained in:
EmoUsedHM01 2024-04-29 19:44:19 +01:00 committed by GitHub
commit b78debe2b1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2060 changed files with 368074 additions and 18682 deletions

View File

@ -28,7 +28,9 @@ jobs:
ssh-keyscan -H ${{ secrets.SSH_HOST }} >> ~/.ssh/known_hosts
- name: Deploy build on server
if: github.event_name == 'push' && github.ref_name == github.event.repository.default_branch
run: rsync -vrm dist/* ${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }}:${{ secrets.DESTINATION_DIR }}
run: |
rsync --del --no-times --checksum -vrm dist/* ${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }}:${{ secrets.DESTINATION_DIR }}
ssh -t ${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }} "~/prmanifest --inpath ${{ secrets.DESTINATION_DIR }} --outpath ${{ secrets.DESTINATION_DIR }}/manifest.json"
- name: Purge Cloudflare Cache
if: github.event_name == 'push' && github.ref_name == github.event.repository.default_branch
id: purge-cache
@ -36,3 +38,7 @@ jobs:
with:
cf_auth: ${{ secrets.CLOUDFLARE_API_TOKEN }}
cf_zone: ${{ secrets.CLOUDFLARE_ZONE_ID }}
files: |
https://pokerogue.net/
https://pokerogue.net/index.html
https://pokerogue.net/manifest.json

View File

@ -7,8 +7,11 @@ PokéRogue is a browser based Pokémon fangame heavily inspired by the roguelite
If you have the motivation and experience with Typescript/Javascript (or are willing to learn) please feel free to fork the repository and make pull requests with contributions. If you don't know what to work on but want to help, reference the below **To-Do** section or the **#vote** channel in the discord.
### 💻 Environment Setup
node: 18.3.0
#### Prerequisites
- node: 18.3.0
- npm: [how to install](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm)
#### Running Locally
1. Clone the repo and in the root directory run `npm install`
- *if you run into any errors, reach out in the **#dev-corner** channel in discord*
2. Run `npm run start:dev` to locally run the project in `localhost:8000`
@ -55,6 +58,9 @@ Check out our [Trello Board](https://trello.com/b/z10B703R/pokerogue-board) to s
- GAMEFREAK
- LJ Birdman
### 🎨 Pagefault Games Intro
- Spectremint
### 🎨 Game Logo
- Gonstar (Paid Commission)

View File

@ -142,7 +142,11 @@ body {
align-self: flex-end;
}
#touchControls:not([data-ui-mode='STARTER_SELECT']) #apad .apadRectBtnContainer > #apadCycleNature, #touchControls:not([data-ui-mode='STARTER_SELECT']) #apad .apadSqBtnContainer {
#apad .apadRectBtnContainer > .apadSqBtn:not(:first-child) {
margin-left: 10%;
}
#touchControls:not([data-ui-mode='STARTER_SELECT']) #apad .apadRectBtnContainer > .apadSqBtn, #touchControls:not([data-ui-mode='STARTER_SELECT']) #apad .apadSqBtnContainer {
display: none;
}

View File

@ -9,27 +9,27 @@
<meta property="og:type" content="website" />
<meta property="og:description" content="A Pokémon fangame heavily inspired by the roguelite genre. Battle endlessly while gathering stacking items, exploring many different biomes, and reaching Pokémon stats you never thought possible." />
<meta property="og:image" content="https://pokerogue.net/logo512.png" />
<link rel="apple-touch-icon" href="/logo512.png" />
<link rel="shortcut icon" type="image/png" href="/logo512.png" />
<link rel="apple-touch-icon" href="./logo512.png" />
<link rel="shortcut icon" type="image/png" href="./logo512.png" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<style type="text/css">
@font-face {
font-family: 'emerald';
src: url('/fonts/pokemon-emerald-pro.ttf') format('truetype');
src: url('./fonts/pokemon-emerald-pro.ttf') format('truetype');
}
@font-face {
font-family: 'pkmnems';
src: url('/fonts/pkmnems.ttf') format('truetype');
src: url('./fonts/pkmnems.ttf') format('truetype');
}
</style>
<link rel="stylesheet" type="text/css" href="index.css" />
<link rel="manifest" href="/manifest.webmanifest">
<link rel="stylesheet" type="text/css" href="./index.css" />
<link rel="manifest" href="./manifest.webmanifest">
<script>
if ("serviceWorker" in navigator) {
window.addEventListener("load", function () {
navigator.serviceWorker.register("/service-worker.js").then(
navigator.serviceWorker.register("./service-worker.js").then(
function (registration) {
console.log("ServiceWorker registration successful");
},
@ -39,6 +39,11 @@
);
});
}
window.addEventListener('beforeinstallprompt', e => {
// Prevent invasive install prompt (users are still able to install as an app)
e.preventDefault();
});
</script>
</head>
@ -63,17 +68,17 @@
<text id="apadLabelCancel" class="apadLabel">B</text>
</div>
<div class="apadBtnContainer apadRectBtnContainer">
<div id="apadCycleNature" class="apadRectBtn apadBtn" data-key="CYCLE_NATURE">
<text class="apadLabel apadLabelSmall">N</text>
<div id="apadCycleShiny" class="apadSqBtn apadBtn" data-key="CYCLE_SHINY">
<text class="apadLabel apadLabelSmall">R</text>
</div>
<div id="apadCycleVariant" class="apadSqBtn apadBtn" data-key="CYCLE_VARIANT">
<text class="apadLabel apadLabelSmall">V</text>
</div>
<div id="apadMenu" class="apadRectBtn apadBtn" data-key="MENU">
<text class="apadLabel apadLabelSmall">Menu</text>
</div>
</div>
<div class="apadBtnContainer apadSqBtnContainer">
<div id="apadCycleShiny" class="apadSqBtn apadBtn" data-key="CYCLE_SHINY">
<text class="apadLabel apadLabelSmall">R</text>
</div>
<div id="apadCycleForm" class="apadSqBtn apadBtn" data-key="CYCLE_FORM">
<text class="apadLabel apadLabelSmall">F</text>
</div>
@ -83,12 +88,15 @@
<div id="apadCycleAbility" class="apadSqBtn apadBtn" data-key="CYCLE_ABILITY">
<text class="apadLabel apadLabelSmall">E</text>
</div>
<div id="apadCycleNature" class="apadSqBtn apadBtn" data-key="CYCLE_NATURE">
<text class="apadLabel apadLabelSmall">N</text>
</div>
</div>
</div>
<script type="module" src="src/main.ts"></script>
<script src="src/touch-controls.js" type="module"></script>
<script src="src/debug.js" type="module"></script>
</div>
<script type="module" src="./src/main.ts"></script>
<script src="./src/touch-controls.js" type="module"></script>
<script src="./src/debug.js" type="module"></script>
</body>
</html>

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "pokemon-rogue-battle",
"version": "1.0.0",
"version": "1.0.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "pokemon-rogue-battle",
"version": "1.0.0",
"version": "1.0.1",
"dependencies": {
"@material/material-color-utilities": "^0.2.7",
"crypto-js": "^4.2.0",

View File

@ -1,7 +1,7 @@
{
"name": "pokemon-rogue-battle",
"private": true,
"version": "1.0.0",
"version": "1.0.4",
"type": "module",
"scripts": {
"start": "vite",

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -4535,5 +4535,184 @@
"999s-roaming",
"999s-roaming",
"999s",
"999s"
"999s",
"1000",
"1001",
"1004",
"181-mega",
"212-mega",
"282-mega_2",
"282-mega_2",
"282-mega_3",
"282-mega_3",
"303-mega",
"334-mega",
"334-mega_2",
"334-mega_2",
"376-mega",
"384-mega",
"384-mega_2",
"384-mega_2",
"4263",
"4264",
"428-mega",
"445-mega",
"448-mega",
"475-mega_2",
"475-mega_2",
"475-mega_3",
"475-mega_3",
"6549",
"6570",
"6571",
"6705",
"6706_2",
"6706_2",
"6706_3",
"6706_3",
"700",
"704",
"705_2",
"705_2",
"705_3",
"705_3",
"706",
"708",
"709",
"710",
"711",
"720-unbound",
"720",
"755",
"756",
"789",
"791_1",
"791_1",
"802",
"856",
"857_2",
"857_2",
"857_3",
"857_3",
"858",
"872",
"873",
"877-hangry",
"877",
"885",
"886",
"887",
"890_2",
"890_2",
"890_3",
"890_3",
"900",
"919",
"920",
"924",
"925-four",
"925-four_2",
"925-four_2",
"925-four_3",
"925-four_3",
"925-three",
"925-three_2",
"925-three_2",
"925-three_3",
"925-three_3",
"94-mega_1",
"94-mega_1",
"94-mega_2",
"94-mega_2",
"94-mega_3",
"94-mega_3",
"962",
"967",
"973",
"987",
"988",
"988_3",
"988_3",
"999",
"999_1",
"999_1",
"1000b",
"1001b",
"1004b",
"181b-mega",
"212b-mega",
"282b-mega",
"303b-mega",
"334b-mega",
"376b-mega",
"384b-mega",
"4263b",
"4264b",
"428b-mega",
"445b-mega",
"448b-mega",
"475b-mega_2",
"475b-mega_2",
"475b-mega_3",
"475b-mega_3",
"6549b",
"6570b",
"6571b",
"6705b",
"6706_2b",
"6706_2b",
"6706_3b",
"6706_3b",
"700b",
"704b",
"705b",
"706b",
"708b",
"709b",
"710b",
"711b",
"720b-unbound",
"720b",
"755b",
"756b",
"789b",
"791b",
"802b",
"856b",
"857_2b",
"857_2b",
"857_3b",
"857_3b",
"858b",
"872b",
"873b",
"877b-hangry",
"877b",
"885b",
"886b",
"887b",
"890b",
"900b",
"919b",
"920b",
"924b",
"925b-four",
"925b-four_2",
"925b-four_2",
"925b-four_3",
"925b-four_3",
"925b-three",
"925b-three_2",
"925b-three_2",
"925b-three_3",
"925b-three_3",
"94b-mega",
"962b",
"962_3b",
"962_3b",
"967b",
"973b",
"987b",
"988b",
"999b"
]

View File

@ -0,0 +1,755 @@
{
"textures": [
{
"image": "shiny_2.png",
"format": "RGBA8888",
"size": {
"w": 455,
"h": 539
},
"scale": 1,
"frames": [
{
"filename": "0.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 1,
"y": 1,
"w": 89,
"h": 75
}
},
{
"filename": "1.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 92,
"y": 1,
"w": 89,
"h": 75
}
},
{
"filename": "2.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 183,
"y": 1,
"w": 89,
"h": 75
}
},
{
"filename": "3.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 274,
"y": 1,
"w": 89,
"h": 75
}
},
{
"filename": "4.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 365,
"y": 1,
"w": 89,
"h": 75
}
},
{
"filename": "5.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 1,
"y": 78,
"w": 89,
"h": 75
}
},
{
"filename": "6.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 92,
"y": 78,
"w": 89,
"h": 75
}
},
{
"filename": "7.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 183,
"y": 78,
"w": 89,
"h": 75
}
},
{
"filename": "8.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 274,
"y": 78,
"w": 89,
"h": 75
}
},
{
"filename": "9.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 365,
"y": 78,
"w": 89,
"h": 75
}
},
{
"filename": "10.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 1,
"y": 155,
"w": 89,
"h": 75
}
},
{
"filename": "11.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 92,
"y": 155,
"w": 89,
"h": 75
}
},
{
"filename": "12.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 183,
"y": 155,
"w": 89,
"h": 75
}
},
{
"filename": "13.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 274,
"y": 155,
"w": 89,
"h": 75
}
},
{
"filename": "14.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 365,
"y": 155,
"w": 89,
"h": 75
}
},
{
"filename": "15.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 1,
"y": 232,
"w": 89,
"h": 75
}
},
{
"filename": "16.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 92,
"y": 232,
"w": 89,
"h": 75
}
},
{
"filename": "17.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 183,
"y": 232,
"w": 89,
"h": 75
}
},
{
"filename": "18.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 274,
"y": 232,
"w": 89,
"h": 75
}
},
{
"filename": "19.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 365,
"y": 232,
"w": 89,
"h": 75
}
},
{
"filename": "20.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 1,
"y": 309,
"w": 89,
"h": 75
}
},
{
"filename": "21.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 92,
"y": 309,
"w": 89,
"h": 75
}
},
{
"filename": "22.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 183,
"y": 309,
"w": 89,
"h": 75
}
},
{
"filename": "23.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 274,
"y": 309,
"w": 89,
"h": 75
}
},
{
"filename": "24.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 365,
"y": 309,
"w": 89,
"h": 75
}
},
{
"filename": "25.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 1,
"y": 386,
"w": 89,
"h": 75
}
},
{
"filename": "26.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 92,
"y": 386,
"w": 89,
"h": 75
}
},
{
"filename": "27.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 183,
"y": 386,
"w": 89,
"h": 75
}
},
{
"filename": "28.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 274,
"y": 386,
"w": 89,
"h": 75
}
},
{
"filename": "29.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 365,
"y": 386,
"w": 89,
"h": 75
}
},
{
"filename": "30.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 1,
"y": 463,
"w": 89,
"h": 75
}
},
{
"filename": "31.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 92,
"y": 463,
"w": 89,
"h": 75
}
},
{
"filename": "32.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 183,
"y": 463,
"w": 89,
"h": 75
}
},
{
"filename": "33.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 274,
"y": 463,
"w": 89,
"h": 75
}
},
{
"filename": "34.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 365,
"y": 463,
"w": 89,
"h": 75
}
}
]
}
],
"meta": {
"app": "https://www.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:e7ab42084b4f407be2605df69451df70:81a31b72361bd6b97bbe9921ad9d1ce7:08550d35d145cda6fb30cd1e5a8b5c68$"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

View File

@ -0,0 +1,755 @@
{
"textures": [
{
"image": "shiny_3.png",
"format": "RGBA8888",
"size": {
"w": 455,
"h": 539
},
"scale": 1,
"frames": [
{
"filename": "0.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 1,
"y": 1,
"w": 89,
"h": 75
}
},
{
"filename": "1.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 92,
"y": 1,
"w": 89,
"h": 75
}
},
{
"filename": "2.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 183,
"y": 1,
"w": 89,
"h": 75
}
},
{
"filename": "3.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 274,
"y": 1,
"w": 89,
"h": 75
}
},
{
"filename": "4.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 365,
"y": 1,
"w": 89,
"h": 75
}
},
{
"filename": "5.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 1,
"y": 78,
"w": 89,
"h": 75
}
},
{
"filename": "6.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 92,
"y": 78,
"w": 89,
"h": 75
}
},
{
"filename": "7.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 183,
"y": 78,
"w": 89,
"h": 75
}
},
{
"filename": "8.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 274,
"y": 78,
"w": 89,
"h": 75
}
},
{
"filename": "9.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 365,
"y": 78,
"w": 89,
"h": 75
}
},
{
"filename": "10.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 1,
"y": 155,
"w": 89,
"h": 75
}
},
{
"filename": "11.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 92,
"y": 155,
"w": 89,
"h": 75
}
},
{
"filename": "12.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 183,
"y": 155,
"w": 89,
"h": 75
}
},
{
"filename": "13.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 274,
"y": 155,
"w": 89,
"h": 75
}
},
{
"filename": "14.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 365,
"y": 155,
"w": 89,
"h": 75
}
},
{
"filename": "15.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 1,
"y": 232,
"w": 89,
"h": 75
}
},
{
"filename": "16.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 92,
"y": 232,
"w": 89,
"h": 75
}
},
{
"filename": "17.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 183,
"y": 232,
"w": 89,
"h": 75
}
},
{
"filename": "18.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 274,
"y": 232,
"w": 89,
"h": 75
}
},
{
"filename": "19.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 365,
"y": 232,
"w": 89,
"h": 75
}
},
{
"filename": "20.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 1,
"y": 309,
"w": 89,
"h": 75
}
},
{
"filename": "21.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 92,
"y": 309,
"w": 89,
"h": 75
}
},
{
"filename": "22.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 183,
"y": 309,
"w": 89,
"h": 75
}
},
{
"filename": "23.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 274,
"y": 309,
"w": 89,
"h": 75
}
},
{
"filename": "24.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 365,
"y": 309,
"w": 89,
"h": 75
}
},
{
"filename": "25.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 1,
"y": 386,
"w": 89,
"h": 75
}
},
{
"filename": "26.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 92,
"y": 386,
"w": 89,
"h": 75
}
},
{
"filename": "27.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 183,
"y": 386,
"w": 89,
"h": 75
}
},
{
"filename": "28.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 274,
"y": 386,
"w": 89,
"h": 75
}
},
{
"filename": "29.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 365,
"y": 386,
"w": 89,
"h": 75
}
},
{
"filename": "30.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 1,
"y": 463,
"w": 89,
"h": 75
}
},
{
"filename": "31.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 92,
"y": 463,
"w": 89,
"h": 75
}
},
{
"filename": "32.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 183,
"y": 463,
"w": 89,
"h": 75
}
},
{
"filename": "33.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 274,
"y": 463,
"w": 89,
"h": 75
}
},
{
"filename": "34.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 89,
"h": 75
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 89,
"h": 75
},
"frame": {
"x": 365,
"y": 463,
"w": 89,
"h": 75
}
}
]
}
],
"meta": {
"app": "https://www.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:e7ab42084b4f407be2605df69451df70:81a31b72361bd6b97bbe9921ad9d1ce7:08550d35d145cda6fb30cd1e5a8b5c68$"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 402 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 263 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 363 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 252 B

View File

Before

Width:  |  Height:  |  Size: 411 B

After

Width:  |  Height:  |  Size: 411 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 318 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 322 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 259 B

View File

@ -4,30 +4,30 @@
"image": "1019.png",
"format": "RGBA8888",
"size": {
"w": 86,
"h": 86
"w": 81,
"h": 81
},
"scale": 1,
"scale": 0.5,
"frames": [
{
"filename": "0001.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 71,
"h": 86
"w": 96,
"h": 96
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 71,
"h": 86
"x": 13,
"y": 7,
"w": 70,
"h": 81
},
"frame": {
"x": 0,
"y": 0,
"w": 71,
"h": 86
"w": 70,
"h": 81
}
}
]
@ -36,6 +36,6 @@
"meta": {
"app": "https://www.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": ""
"smartupdate": "$TexturePacker:SmartUpdate:11370107317bd979f7506ff64ce97f23:d973af1b21e3616a0ed07b332a99654f:7f41678ca2a06ee5c2aed7357b311846$"
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -4,30 +4,30 @@
"image": "1024-stellar.png",
"format": "RGBA8888",
"size": {
"w": 96,
"h": 96
"w": 119,
"h": 119
},
"scale": 0.5,
"scale": 1,
"frames": [
{
"filename": "0001.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 96,
"h": 96
"w": 119,
"h": 119
},
"spriteSourceSize": {
"x": 9,
"x": 0,
"y": 0,
"w": 78,
"h": 96
"w": 115,
"h": 119
},
"frame": {
"x": 0,
"y": 0,
"w": 78,
"h": 96
"w": 115,
"h": 119
}
}
]
@ -36,6 +36,6 @@
"meta": {
"app": "https://www.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:c9ee64bda72f2dadb06109338796ccac:1313f1218b7da2c57ad9f290d1323840:c1508f3b01ae78a28a1267fd6caa4f7b$"
"smartupdate": "$TexturePacker:SmartUpdate:bc663acf2e62803fce6c3a525dc8dd98:ccd7d0de8a487235cfbd6f372afa931f:c1508f3b01ae78a28a1267fd6caa4f7b$"
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.1 KiB

After

Width:  |  Height:  |  Size: 15 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.0 KiB

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.5 KiB

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.6 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.4 KiB

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.5 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.7 KiB

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.9 KiB

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.6 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.4 KiB

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.2 KiB

After

Width:  |  Height:  |  Size: 6.2 KiB

View File

@ -0,0 +1,41 @@
{
"textures": [
{
"image": "869-caramel-swirl.png",
"format": "RGBA8888",
"size": {
"w": 55,
"h": 55
},
"scale": 0.5,
"frames": [
{
"filename": "0001.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 96,
"h": 96
},
"spriteSourceSize": {
"x": 28,
"y": 20,
"w": 39,
"h": 55
},
"frame": {
"x": 0,
"y": 0,
"w": 39,
"h": 55
}
}
]
}
],
"meta": {
"app": "https://www.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:e565b3b962f894b4de5291159fced6f2:dec57ba4f1836b6834da2da4c98c442a:a9efacddd6da069c39eca521bf0c5c93$"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 724 B

View File

@ -0,0 +1,41 @@
{
"textures": [
{
"image": "869-lemon-cream.png",
"format": "RGBA8888",
"size": {
"w": 55,
"h": 55
},
"scale": 0.5,
"frames": [
{
"filename": "0001.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 96,
"h": 96
},
"spriteSourceSize": {
"x": 28,
"y": 20,
"w": 39,
"h": 55
},
"frame": {
"x": 0,
"y": 0,
"w": 39,
"h": 55
}
}
]
}
],
"meta": {
"app": "https://www.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:8a99ba9bf3bfb93bba7c6010553d9e0e:b231a3962960f61ce4d970d95bde3f3c:0284bb2fb44231f3756d5e41407b29dc$"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 724 B

View File

@ -0,0 +1,41 @@
{
"textures": [
{
"image": "869-matcha-cream.png",
"format": "RGBA8888",
"size": {
"w": 55,
"h": 55
},
"scale": 0.5,
"frames": [
{
"filename": "0001.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 96,
"h": 96
},
"spriteSourceSize": {
"x": 28,
"y": 20,
"w": 39,
"h": 55
},
"frame": {
"x": 0,
"y": 0,
"w": 39,
"h": 55
}
}
]
}
],
"meta": {
"app": "https://www.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:713d1a6f0fbac3236c31960e722f4425:29a82de035ed4f33426b4bb6943c4036:3607dee150b69bb8409f07bf4b436c27$"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 724 B

View File

@ -0,0 +1,41 @@
{
"textures": [
{
"image": "869-mint-cream.png",
"format": "RGBA8888",
"size": {
"w": 55,
"h": 55
},
"scale": 0.5,
"frames": [
{
"filename": "0001.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 96,
"h": 96
},
"spriteSourceSize": {
"x": 28,
"y": 20,
"w": 39,
"h": 55
},
"frame": {
"x": 0,
"y": 0,
"w": 39,
"h": 55
}
}
]
}
],
"meta": {
"app": "https://www.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:5deaa7830e8cbf001dce6c800a9e3da2:4c9255c2ad6d33fc00a90e447fb8a344:5a3d349b5aaedd43ed9c9acbc0c8652a$"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 724 B

View File

@ -0,0 +1,41 @@
{
"textures": [
{
"image": "869-rainbow-swirl.png",
"format": "RGBA8888",
"size": {
"w": 55,
"h": 55
},
"scale": 0.5,
"frames": [
{
"filename": "0001.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 96,
"h": 96
},
"spriteSourceSize": {
"x": 28,
"y": 20,
"w": 39,
"h": 55
},
"frame": {
"x": 0,
"y": 0,
"w": 39,
"h": 55
}
}
]
}
],
"meta": {
"app": "https://www.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:1a4d1bc0283fdcf9704523ff9c304937:8122f937b67cb25a772bdb63688456b7:5efb62c1b2c8ccb825172755b6a5956b$"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 724 B

View File

@ -0,0 +1,41 @@
{
"textures": [
{
"image": "869-ruby-cream.png",
"format": "RGBA8888",
"size": {
"w": 55,
"h": 55
},
"scale": 0.5,
"frames": [
{
"filename": "0001.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 96,
"h": 96
},
"spriteSourceSize": {
"x": 28,
"y": 20,
"w": 39,
"h": 55
},
"frame": {
"x": 0,
"y": 0,
"w": 39,
"h": 55
}
}
]
}
],
"meta": {
"app": "https://www.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:e03bb56ed3208e982eb0bec819d53bf6:2c86ae79dcda2aeecdcf0c025c16d3c3:36b2afa6f1e593bd875572a5eaa54a8f$"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 724 B

View File

@ -0,0 +1,41 @@
{
"textures": [
{
"image": "869-ruby-swirl.png",
"format": "RGBA8888",
"size": {
"w": 55,
"h": 55
},
"scale": 0.5,
"frames": [
{
"filename": "0001.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 96,
"h": 96
},
"spriteSourceSize": {
"x": 28,
"y": 20,
"w": 39,
"h": 55
},
"frame": {
"x": 0,
"y": 0,
"w": 39,
"h": 55
}
}
]
}
],
"meta": {
"app": "https://www.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:3c79af909f9735d7ece0527b789506f2:0b973ea05d9bc875560323eb9df5efe3:ea7e9be6cfcdb9bb39d201b2ab117eae$"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 724 B

View File

@ -0,0 +1,41 @@
{
"textures": [
{
"image": "869-salted-cream.png",
"format": "RGBA8888",
"size": {
"w": 55,
"h": 55
},
"scale": 0.5,
"frames": [
{
"filename": "0001.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 96,
"h": 96
},
"spriteSourceSize": {
"x": 28,
"y": 20,
"w": 39,
"h": 55
},
"frame": {
"x": 0,
"y": 0,
"w": 39,
"h": 55
}
}
]
}
],
"meta": {
"app": "https://www.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:bb169ea1db5dad0a39dcd54df8356c06:608e3745adcb907d1f382e251ad807f4:6e5c7cbfd1699b5560a39643a258e386$"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 724 B

View File

@ -4,30 +4,744 @@
"image": "890-eternamax.png",
"format": "RGBA8888",
"size": {
"w": 96,
"h": 96
"w": 579,
"h": 579
},
"scale": 1,
"frames": [
{
"filename": "0001.png",
"filename": "0035.png",
"rotated": false,
"trimmed": false,
"trimmed": true,
"sourceSize": {
"w": 96,
"h": 96
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 96,
"h": 96
"x": 8,
"y": 9,
"w": 100,
"h": 98
},
"frame": {
"x": 0,
"y": 0,
"w": 100,
"h": 98
}
},
{
"filename": "0031.png",
"rotated": false,
"trimmed": true,
"sourceSize": {
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 8,
"y": 8,
"w": 95,
"h": 100
},
"frame": {
"x": 100,
"y": 0,
"w": 95,
"h": 100
}
},
{
"filename": "0029.png",
"rotated": false,
"trimmed": true,
"sourceSize": {
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 11,
"y": 8,
"w": 91,
"h": 100
},
"frame": {
"x": 0,
"y": 98,
"w": 91,
"h": 100
}
},
{
"filename": "0001.png",
"rotated": false,
"trimmed": true,
"sourceSize": {
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 8,
"y": 9,
"w": 96,
"h": 98
},
"frame": {
"x": 91,
"y": 100,
"w": 96,
"h": 98
}
},
{
"filename": "0032.png",
"rotated": false,
"trimmed": true,
"sourceSize": {
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 8,
"y": 9,
"w": 95,
"h": 99
},
"frame": {
"x": 187,
"y": 100,
"w": 95,
"h": 99
}
},
{
"filename": "0030.png",
"rotated": false,
"trimmed": true,
"sourceSize": {
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 9,
"y": 10,
"w": 91,
"h": 98
},
"frame": {
"x": 0,
"y": 198,
"w": 91,
"h": 98
}
},
{
"filename": "0007.png",
"rotated": false,
"trimmed": true,
"sourceSize": {
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 11,
"y": 10,
"w": 88,
"h": 98
},
"frame": {
"x": 91,
"y": 198,
"w": 88,
"h": 98
}
},
{
"filename": "0002.png",
"rotated": false,
"trimmed": true,
"sourceSize": {
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 8,
"y": 10,
"w": 95,
"h": 97
},
"frame": {
"x": 195,
"y": 0,
"w": 95,
"h": 97
}
},
{
"filename": "0003.png",
"rotated": false,
"trimmed": true,
"sourceSize": {
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 8,
"y": 11,
"w": 95,
"h": 97
},
"frame": {
"x": 179,
"y": 199,
"w": 95,
"h": 97
}
},
{
"filename": "0004.png",
"rotated": false,
"trimmed": true,
"sourceSize": {
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 8,
"y": 11,
"w": 95,
"h": 97
},
"frame": {
"x": 274,
"y": 199,
"w": 95,
"h": 97
}
},
{
"filename": "0033.png",
"rotated": false,
"trimmed": true,
"sourceSize": {
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 8,
"y": 11,
"w": 95,
"h": 97
},
"frame": {
"x": 290,
"y": 0,
"w": 95,
"h": 97
}
},
{
"filename": "0034.png",
"rotated": false,
"trimmed": true,
"sourceSize": {
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 8,
"y": 11,
"w": 94,
"h": 96
},
"frame": {
"x": 282,
"y": 97,
"w": 94,
"h": 96
}
},
{
"filename": "0028.png",
"rotated": false,
"trimmed": true,
"sourceSize": {
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 11,
"y": 11,
"w": 90,
"h": 97
},
"frame": {
"x": 369,
"y": 193,
"w": 90,
"h": 97
}
},
{
"filename": "0005.png",
"rotated": false,
"trimmed": true,
"sourceSize": {
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 8,
"y": 13,
"w": 93,
"h": 95
},
"frame": {
"x": 385,
"y": 0,
"w": 93,
"h": 95
}
},
{
"filename": "0017.png",
"rotated": false,
"trimmed": true,
"sourceSize": {
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 13,
"y": 9,
"w": 91,
"h": 96
},
"frame": {
"x": 385,
"y": 95,
"w": 91,
"h": 96
}
},
{
"filename": "0008.png",
"rotated": false,
"trimmed": true,
"sourceSize": {
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 12,
"y": 11,
"w": 87,
"h": 97
},
"frame": {
"x": 369,
"y": 290,
"w": 87,
"h": 97
}
},
{
"filename": "0009.png",
"rotated": false,
"trimmed": true,
"sourceSize": {
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 11,
"y": 12,
"w": 90,
"h": 96
},
"frame": {
"x": 456,
"y": 290,
"w": 90,
"h": 96
}
},
{
"filename": "0015.png",
"rotated": false,
"trimmed": true,
"sourceSize": {
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 12,
"y": 8,
"w": 90,
"h": 96
},
"frame": {
"x": 459,
"y": 191,
"w": 90,
"h": 96
}
},
{
"filename": "0016.png",
"rotated": false,
"trimmed": true,
"sourceSize": {
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 13,
"y": 8,
"w": 90,
"h": 95
},
"frame": {
"x": 476,
"y": 95,
"w": 90,
"h": 95
}
},
{
"filename": "0014.png",
"rotated": false,
"trimmed": true,
"sourceSize": {
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 12,
"y": 11,
"w": 89,
"h": 95
},
"frame": {
"x": 478,
"y": 0,
"w": 89,
"h": 95
}
},
{
"filename": "0027.png",
"rotated": false,
"trimmed": true,
"sourceSize": {
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 11,
"y": 12,
"w": 89,
"h": 96
},
"frame": {
"x": 456,
"y": 386,
"w": 89,
"h": 96
}
},
{
"filename": "0025.png",
"rotated": false,
"trimmed": true,
"sourceSize": {
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 11,
"y": 11,
"w": 89,
"h": 95
},
"frame": {
"x": 0,
"y": 296,
"w": 89,
"h": 95
}
},
{
"filename": "0006.png",
"rotated": false,
"trimmed": true,
"sourceSize": {
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 9,
"y": 14,
"w": 89,
"h": 94
},
"frame": {
"x": 89,
"y": 296,
"w": 89,
"h": 94
}
},
{
"filename": "0011.png",
"rotated": false,
"trimmed": true,
"sourceSize": {
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 12,
"y": 11,
"w": 88,
"h": 95
},
"frame": {
"x": 178,
"y": 296,
"w": 88,
"h": 95
}
},
{
"filename": "0023.png",
"rotated": false,
"trimmed": true,
"sourceSize": {
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 12,
"y": 11,
"w": 87,
"h": 95
},
"frame": {
"x": 89,
"y": 390,
"w": 87,
"h": 95
}
},
{
"filename": "0013.png",
"rotated": false,
"trimmed": true,
"sourceSize": {
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 11,
"y": 12,
"w": 89,
"h": 94
},
"frame": {
"x": 0,
"y": 391,
"w": 89,
"h": 94
}
},
{
"filename": "0012.png",
"rotated": false,
"trimmed": true,
"sourceSize": {
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 11,
"y": 14,
"w": 89,
"h": 93
},
"frame": {
"x": 266,
"y": 387,
"w": 89,
"h": 93
}
},
{
"filename": "0019.png",
"rotated": false,
"trimmed": true,
"sourceSize": {
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 16,
"y": 13,
"w": 85,
"h": 91
},
"frame": {
"x": 266,
"y": 296,
"w": 85,
"h": 91
}
},
{
"filename": "0024.png",
"rotated": false,
"trimmed": true,
"sourceSize": {
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 11,
"y": 13,
"w": 88,
"h": 94
},
"frame": {
"x": 176,
"y": 391,
"w": 88,
"h": 94
}
},
{
"filename": "0010.png",
"rotated": false,
"trimmed": true,
"sourceSize": {
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 12,
"y": 13,
"w": 87,
"h": 94
},
"frame": {
"x": 355,
"y": 387,
"w": 87,
"h": 94
}
},
{
"filename": "0018.png",
"rotated": false,
"trimmed": true,
"sourceSize": {
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 16,
"y": 11,
"w": 87,
"h": 94
},
"frame": {
"x": 264,
"y": 480,
"w": 87,
"h": 94
}
},
{
"filename": "0026.png",
"rotated": false,
"trimmed": true,
"sourceSize": {
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 11,
"y": 14,
"w": 89,
"h": 93
},
"frame": {
"x": 351,
"y": 481,
"w": 89,
"h": 93
}
},
{
"filename": "0022.png",
"rotated": false,
"trimmed": true,
"sourceSize": {
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 12,
"y": 11,
"w": 87,
"h": 93
},
"frame": {
"x": 440,
"y": 482,
"w": 87,
"h": 93
}
},
{
"filename": "0021.png",
"rotated": false,
"trimmed": true,
"sourceSize": {
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 13,
"y": 10,
"w": 86,
"h": 94
},
"frame": {
"x": 0,
"y": 485,
"w": 86,
"h": 94
}
},
{
"filename": "0020.png",
"rotated": false,
"trimmed": true,
"sourceSize": {
"w": 112,
"h": 112
},
"spriteSourceSize": {
"x": 13,
"y": 14,
"w": 85,
"h": 91
},
"frame": {
"x": 86,
"y": 485,
"w": 85,
"h": 91
}
}
]
@ -36,6 +750,6 @@
"meta": {
"app": "https://www.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:2f58479d6e423d47c2e020de79121c9e:2b0d210cee7325446481599b7b95c52b:4db8b375066b8984bad6ce8eed9a5f6f$"
"smartupdate": "$TexturePacker:SmartUpdate:8fd9e1830200ec8e4aac8571cc2d27a6:c966e3efce03c7bae43d7bca6d6dfa62:cedd2711a12bbacba5623505fe88bd92$"
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 40 KiB

View File

@ -4,30 +4,30 @@
"image": "1018.png",
"format": "RGBA8888",
"size": {
"w": 83,
"h": 83
"w": 93,
"h": 93
},
"scale": 1,
"scale": 0.333,
"frames": [
{
"filename": "0001.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 72,
"h": 83
"w": 96,
"h": 96
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 72,
"h": 83
"x": 9,
"y": 1,
"w": 77,
"h": 93
},
"frame": {
"x": 0,
"y": 0,
"w": 72,
"h": 83
"w": 77,
"h": 93
}
}
]
@ -36,6 +36,6 @@
"meta": {
"app": "https://www.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": ""
"smartupdate": "$TexturePacker:SmartUpdate:7bcbd22c0ec7417e78bd928f1dd199ef:729a751331cdd4c61b8bc4b78a19a5ec:12f4e8cc755bd0ab0f220a63428f3ba3$"
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 997 B

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -4,30 +4,30 @@
"image": "1019.png",
"format": "RGBA8888",
"size": {
"w": 88,
"h": 88
"w": 84,
"h": 84
},
"scale": 1,
"scale": 0.333,
"frames": [
{
"filename": "0001.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 60,
"h": 88
"w": 96,
"h": 96
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 60,
"h": 88
"x": 19,
"y": 6,
"w": 57,
"h": 84
},
"frame": {
"x": 0,
"y": 0,
"w": 60,
"h": 88
"w": 57,
"h": 84
}
}
]
@ -36,6 +36,6 @@
"meta": {
"app": "https://www.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": ""
"smartupdate": "$TexturePacker:SmartUpdate:fa22ad6f533362429e5f16082dee27ef:8dac5b6219bd93d6b6b186a6e5da1962:7f41678ca2a06ee5c2aed7357b311846$"
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 823 B

After

Width:  |  Height:  |  Size: 1022 B

View File

@ -4,30 +4,30 @@
"image": "1024-stellar.png",
"format": "RGBA8888",
"size": {
"w": 96,
"h": 96
"w": 119,
"h": 119
},
"scale": 0.333,
"scale": 1,
"frames": [
{
"filename": "0001.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 96,
"h": 96
"w": 119,
"h": 119
},
"spriteSourceSize": {
"x": 5,
"x": 0,
"y": 0,
"w": 86,
"h": 96
"w": 115,
"h": 119
},
"frame": {
"x": 0,
"y": 0,
"w": 86,
"h": 96
"w": 115,
"h": 119
}
}
]
@ -36,6 +36,6 @@
"meta": {
"app": "https://www.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:ac5e775f77477eeabd029932804747c4:f7a112a87c35dc81cb0da88b7cbb39e8:c1508f3b01ae78a28a1267fd6caa4f7b$"
"smartupdate": "$TexturePacker:SmartUpdate:210ba1c2e6e58501571ae226d073a3c5:f12bdf191842f7ec3a4be98a43fb8121:c1508f3b01ae78a28a1267fd6caa4f7b$"
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 935 B

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

@ -0,0 +1,41 @@
{
"textures": [
{
"image": "869-caramel-swirl.png",
"format": "RGBA8888",
"size": {
"w": 55,
"h": 55
},
"scale": 0.333,
"frames": [
{
"filename": "0001.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 96,
"h": 96
},
"spriteSourceSize": {
"x": 30,
"y": 20,
"w": 36,
"h": 55
},
"frame": {
"x": 0,
"y": 0,
"w": 36,
"h": 55
}
}
]
}
],
"meta": {
"app": "https://www.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:2e4ddfde96ab312ce7d94315e5d95a9c:7f74b65259ec1e4bcb1f62f02643d8a7:a9efacddd6da069c39eca521bf0c5c93$"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 634 B

View File

@ -0,0 +1,41 @@
{
"textures": [
{
"image": "869-lemon-cream.png",
"format": "RGBA8888",
"size": {
"w": 55,
"h": 55
},
"scale": 0.333,
"frames": [
{
"filename": "0001.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 96,
"h": 96
},
"spriteSourceSize": {
"x": 30,
"y": 20,
"w": 36,
"h": 55
},
"frame": {
"x": 0,
"y": 0,
"w": 36,
"h": 55
}
}
]
}
],
"meta": {
"app": "https://www.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:003640cdcb017af6d6fb7cce7ae5e1df:4dc2b3e45490e0868ac99d9aa7102c07:0284bb2fb44231f3756d5e41407b29dc$"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 634 B

View File

@ -0,0 +1,41 @@
{
"textures": [
{
"image": "869-matcha-cream.png",
"format": "RGBA8888",
"size": {
"w": 55,
"h": 55
},
"scale": 0.333,
"frames": [
{
"filename": "0001.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 96,
"h": 96
},
"spriteSourceSize": {
"x": 30,
"y": 20,
"w": 36,
"h": 55
},
"frame": {
"x": 0,
"y": 0,
"w": 36,
"h": 55
}
}
]
}
],
"meta": {
"app": "https://www.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:78c1fa20bd0f496a72dacd28367a66ad:96033ef5b7aeeb9456771109824bd27d:3607dee150b69bb8409f07bf4b436c27$"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 634 B

View File

@ -0,0 +1,41 @@
{
"textures": [
{
"image": "869-mint-cream.png",
"format": "RGBA8888",
"size": {
"w": 55,
"h": 55
},
"scale": 0.333,
"frames": [
{
"filename": "0001.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 96,
"h": 96
},
"spriteSourceSize": {
"x": 30,
"y": 20,
"w": 36,
"h": 55
},
"frame": {
"x": 0,
"y": 0,
"w": 36,
"h": 55
}
}
]
}
],
"meta": {
"app": "https://www.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:567b2cbeb4dd05e9ea75a9745678a661:daa4e8bd833c1f1b8fcef7664611a23f:5a3d349b5aaedd43ed9c9acbc0c8652a$"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 634 B

View File

@ -0,0 +1,41 @@
{
"textures": [
{
"image": "869-rainbow-swirl.png",
"format": "RGBA8888",
"size": {
"w": 55,
"h": 55
},
"scale": 0.333,
"frames": [
{
"filename": "0001.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 96,
"h": 96
},
"spriteSourceSize": {
"x": 30,
"y": 20,
"w": 36,
"h": 55
},
"frame": {
"x": 0,
"y": 0,
"w": 36,
"h": 55
}
}
]
}
],
"meta": {
"app": "https://www.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:3be6ab13976cde5a336b4186625bf386:e472d87a989050125ac960a9e53d8c77:5efb62c1b2c8ccb825172755b6a5956b$"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 634 B

View File

@ -0,0 +1,41 @@
{
"textures": [
{
"image": "869-ruby-cream.png",
"format": "RGBA8888",
"size": {
"w": 55,
"h": 55
},
"scale": 0.333,
"frames": [
{
"filename": "0001.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 96,
"h": 96
},
"spriteSourceSize": {
"x": 30,
"y": 20,
"w": 36,
"h": 55
},
"frame": {
"x": 0,
"y": 0,
"w": 36,
"h": 55
}
}
]
}
],
"meta": {
"app": "https://www.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:5e1a2e975f94fce84da322e45069c702:68247ca18f9dd3e2bc269dc772ad069d:36b2afa6f1e593bd875572a5eaa54a8f$"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 634 B

View File

@ -0,0 +1,41 @@
{
"textures": [
{
"image": "869-ruby-swirl.png",
"format": "RGBA8888",
"size": {
"w": 55,
"h": 55
},
"scale": 0.333,
"frames": [
{
"filename": "0001.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 96,
"h": 96
},
"spriteSourceSize": {
"x": 30,
"y": 20,
"w": 36,
"h": 55
},
"frame": {
"x": 0,
"y": 0,
"w": 36,
"h": 55
}
}
]
}
],
"meta": {
"app": "https://www.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:74597d1dd20480b7437d63ffff36fdc6:712fef9349381ad34ea1cf553353507e:ea7e9be6cfcdb9bb39d201b2ab117eae$"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 634 B

View File

@ -0,0 +1,41 @@
{
"textures": [
{
"image": "869-salted-cream.png",
"format": "RGBA8888",
"size": {
"w": 55,
"h": 55
},
"scale": 0.333,
"frames": [
{
"filename": "0001.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 96,
"h": 96
},
"spriteSourceSize": {
"x": 30,
"y": 20,
"w": 36,
"h": 55
},
"frame": {
"x": 0,
"y": 0,
"w": 36,
"h": 55
}
}
]
}
],
"meta": {
"app": "https://www.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:e2389a610f198709cf6d31d9265f1dec:150abb49e4602321790850b291b4a7fb:6e5c7cbfd1699b5560a39643a258e386$"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 634 B

View File

@ -4,30 +4,30 @@
"image": "1018.png",
"format": "RGBA8888",
"size": {
"w": 83,
"h": 83
"w": 93,
"h": 93
},
"scale": 1,
"scale": 0.333,
"frames": [
{
"filename": "0001.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 72,
"h": 83
"w": 96,
"h": 96
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 72,
"h": 83
"x": 9,
"y": 1,
"w": 77,
"h": 93
},
"frame": {
"x": 0,
"y": 0,
"w": 72,
"h": 83
"w": 77,
"h": 93
}
}
]
@ -36,6 +36,6 @@
"meta": {
"app": "https://www.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": ""
"smartupdate": "$TexturePacker:SmartUpdate:19cb90b37890ea754c5d1edca5326abb:e99262614bcac2d671e12ed0bc4eb1d2:12f4e8cc755bd0ab0f220a63428f3ba3$"
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 973 B

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -4,30 +4,30 @@
"image": "1019.png",
"format": "RGBA8888",
"size": {
"w": 88,
"h": 88
"w": 84,
"h": 84
},
"scale": 1,
"scale": 0.333,
"frames": [
{
"filename": "0001.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 60,
"h": 88
"w": 96,
"h": 96
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 60,
"h": 88
"x": 19,
"y": 6,
"w": 57,
"h": 84
},
"frame": {
"x": 0,
"y": 0,
"w": 60,
"h": 88
"w": 57,
"h": 84
}
}
]
@ -36,6 +36,6 @@
"meta": {
"app": "https://www.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": ""
"smartupdate": "$TexturePacker:SmartUpdate:583d46caa69d701c444b02879c33295e:5c81ac32256868d5970b2442ad4a700c:7f41678ca2a06ee5c2aed7357b311846$"
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 812 B

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -4,30 +4,30 @@
"image": "1024-stellar.png",
"format": "RGBA8888",
"size": {
"w": 96,
"h": 96
"w": 119,
"h": 119
},
"scale": 0.333,
"scale": 1,
"frames": [
{
"filename": "0001.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 96,
"h": 96
"w": 119,
"h": 119
},
"spriteSourceSize": {
"x": 5,
"x": 0,
"y": 0,
"w": 86,
"h": 96
"w": 115,
"h": 119
},
"frame": {
"x": 0,
"y": 0,
"w": 86,
"h": 96
"w": 115,
"h": 119
}
}
]
@ -36,6 +36,6 @@
"meta": {
"app": "https://www.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:2bd25bae0fabcfbc35e24bd578a7b4b5:aec60788a0d77f38fb599d721e41a0d6:c1508f3b01ae78a28a1267fd6caa4f7b$"
"smartupdate": "$TexturePacker:SmartUpdate:210ba1c2e6e58501571ae226d073a3c5:f12bdf191842f7ec3a4be98a43fb8121:c1508f3b01ae78a28a1267fd6caa4f7b$"
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 934 B

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@ -0,0 +1,41 @@
{
"textures": [
{
"image": "869-caramel-swirl.png",
"format": "RGBA8888",
"size": {
"w": 55,
"h": 55
},
"scale": 1,
"frames": [
{
"filename": "0001.png",
"rotated": false,
"trimmed": false,
"sourceSize": {
"w": 36,
"h": 55
},
"spriteSourceSize": {
"x": 0,
"y": 0,
"w": 36,
"h": 55
},
"frame": {
"x": 0,
"y": 0,
"w": 36,
"h": 55
}
}
]
}
],
"meta": {
"app": "https://www.codeandweb.com/texturepacker",
"version": "3.0",
"smartupdate": "$TexturePacker:SmartUpdate:9282a977590712360ae72153b51f6d19:8a8b13830aca0ac27048eddc715c72bd:18cea997ef38e1531596f96f8db4f25e$"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 626 B

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